Where do I find documentation of pyomo functions and their arguments?
For example, what arguments does the solve
method take? By looking at many examples, I have seen tee
and logfile
being used, but it must be documented somewhere?
Python's inspect.signature
does not help, since it returns just <Signature (*args, **kwds)>
.
And is there a difference between solvers' and solverManagers' solve
methods, apart from the latter requiring(?) an opt
parameter for the solver? (And, for that matter, is there any documentation for SolverManagerFactory
, apart from it being used in on example (for parallel solve using pyro)?)
Also, where is documentation of the return object of solve
? It seems to contain some useful information, but I cannot find it documented anywhere.