#10785: Setting solver-specific options
----------------------------------+-----------------------------------------
   Reporter:  ncohen              |          Owner:  ncohen       
       Type:  enhancement         |         Status:  needs_review 
   Priority:  major               |      Milestone:  sage-4.8     
  Component:  linear programming  |       Keywords:               
Work_issues:                      |       Upstream:  N/A          
   Reviewer:                      |         Author:  Nathann Cohen
     Merged:                      |   Dependencies:               
----------------------------------+-----------------------------------------

Comment(by fichtejo):

 I have overlooked that method. I am almost fine.

 Some minor points in the documentation:

 In mip.pyx:1357 you write

 "The solver parameters are by essence solver-specific, which means their
 meaning heavily depends on the solver used (it is GLPK by default)."

 The priority is CPLEX, Coin, GLPK. I guess sage is released with GLPK.
 Thus it is still right, but we should clarify it or remove the statement
 about the default solver.

 The import of example mip.pyx:1396 uses

 {{{
 from sage.numerical.backends.generic_backend import get_solver
 p = MixedIntegerLinearProgram()
 p.solver_parameter("timelimit", 60)
 }}}
 I think it has to be

 {{{
 from sage.numerical.mip import MixedIntegerLinearProgram
 p = MixedIntegerLinearProgram()
 }}}

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/10785#comment:7>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en.

Reply via email to