Changeset 1328:a8dd11348853 in lemon-0.x
- Timestamp:
- 04/08/05 17:24:01 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1767
- Location:
- src/lemon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/lp_base.h
r1323 r1328 31 31 ///\file 32 32 ///\brief The interface of the LP solver interface. 33 ///\ingroup gen_opt_group 33 34 namespace lemon { 34 35 … … 101 102 102 103 ///Common base class for LP solvers 104 105 ///\todo Much more docs 106 ///\ingroup gen_opt_group 103 107 class LpSolverBase { 104 108 … … 218 222 ///v*2.1+(3*v+(v*12+w+6)*3)/2 219 223 ///\endcode 220 ///are valid expressions. The usual assignment operations are also defined. 224 ///are valid \ref Expr "Expr"essions. 225 ///The usual assignment operations are also defined. 221 226 ///\code 222 227 ///e=v+w; … … 231 236 ///\endcode 232 237 /// 233 ///\note that\ref clear() not only sets all coefficients to 0 but also238 ///\note \ref clear() not only sets all coefficients to 0 but also 234 239 ///clears the constant components. 240 /// 241 ///\sa Constr 242 /// 235 243 class Expr : public std::map<Col,Value> 236 244 { … … 310 318 311 319 ///Linear constraint 312 //typedef LinConstr<Expr> Constr; 320 321 ///\todo document please 322 /// 313 323 class Constr 314 324 { … … 504 514 ///\bug This is a temportary function. The interface will change to 505 515 ///a better one. 516 ///\todo Option to control whether a constraint with a single variable is 517 ///added or not. 506 518 void setRow(Row r, Value l,const Expr &e, Value u) { 507 519 std::vector<int> indices; -
src/lemon/lp_glpk.h
r1326 r1328 20 20 ///\file 21 21 ///\brief Header of the LEMON-GLPK lp solver interface. 22 ///\ingroup gen_opt_group 22 23 23 24 #include "lp_base.h" … … 32 33 /// 33 34 /// This class implements a lemon wrapper for GLPK. 35 ///\ingroup gen_opt_group 34 36 class LpGlpk : public LpSolverBase { 35 37 protected:
Note: See TracChangeset
for help on using the changeset viewer.