Changeset 424

Show
Ignore:
Timestamp:
02/05/10 18:11:18 (1 month ago)
Author:
dmitrey
Message:

add lsqr to LLSP constructor docstring

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • PythonPackages/OpenOpt/openopt/oo.py

    r392 r424  
    506 506     (see also other r fields) 
    507 507     Solvers available for now: 
    508       lapack_dgelss - slow but stable, requires scipy; unconstrained 
    509       lapack_sgelss - single precesion, requires scipy; unconstrained 
    510       bvls - requires installation from OO LLSP webpage, can handle lb, ub 
      508     lsqr (license: GPL) - most efficient, can hanlde scipy.sparse matrices,  
      509         user-supplied or generated by FuncDesigner models automatically 
      510     lapack_dgelss (license: BSD) - slow but stable, requires scipy; unconstrained 
      511     lapack_sgelss (license: BSD) - single precesion, requires scipy; unconstrained 
      512     bvls (license: BSD) - requires installation from OO LLSP webpage, can handle lb, ub 
    511 513     converter to nlp. Example: r = p.solve('nlp:ralg', plot=1, iprint =15, <...>) 
    512 514     """