diff -r be025fc1b13d -r 7a483c1d38b5 lemon/lp_base.h --- a/lemon/lp_base.h Thu Jun 09 09:47:51 2005 +0000 +++ b/lemon/lp_base.h Thu Jun 09 09:49:48 2005 +0000 @@ -108,11 +108,13 @@ public: - ///\e + ///Possible outcomes of an LP solving procedure enum SolveExitStatus { - ///\e + ///This means that the problem has been successfully solved: either + ///an optimal solution has been found or infeasibility/unboundedness + ///has been proved. SOLVED = 0, - ///\e + ///Any other case (including the case when some user specified limit has been exceeded) UNSOLVED = 1 }; @@ -915,7 +917,11 @@ ///@{ - ///\e + ///\e Solve the LP problem at hand + /// + ///\return The result of the optimization procedure. Possible values and their meanings can be found in the documentation of \ref SolveExitStatus. + /// + ///\todo Which method is used to solve the problem SolveExitStatus solve() { return _solve(); } ///@} @@ -924,7 +930,7 @@ ///@{ - ///\e + ///\e SolutionStatus primalStatus() { return _getPrimalStatus(); }