COIN-OR::LEMON - Graph Library

Changeset 1328:a8dd11348853 in lemon-0.x


Ignore:
Timestamp:
04/08/05 17:24:01 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1767
Message:
  • Insert LP stuff into the module structure
  • More doc
Location:
src/lemon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/lp_base.h

    r1323 r1328  
    3131///\file
    3232///\brief The interface of the LP solver interface.
     33///\ingroup gen_opt_group
    3334namespace lemon {
    3435 
     
    101102   
    102103  ///Common base class for LP solvers
     104 
     105  ///\todo Much more docs
     106  ///\ingroup gen_opt_group
    103107  class LpSolverBase {
    104108
     
    218222    ///v*2.1+(3*v+(v*12+w+6)*3)/2
    219223    ///\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.
    221226    ///\code
    222227    ///e=v+w;
     
    231236    ///\endcode
    232237    ///
    233     ///\note that \ref clear() not only sets all coefficients to 0 but also
     238    ///\note \ref clear() not only sets all coefficients to 0 but also
    234239    ///clears the constant components.
     240    ///
     241    ///\sa Constr
     242    ///
    235243    class Expr : public std::map<Col,Value>
    236244    {
     
    310318   
    311319    ///Linear constraint
    312     //typedef LinConstr<Expr> Constr;
     320
     321    ///\todo document please
     322    ///
    313323    class Constr
    314324    {
     
    504514    ///\bug This is a temportary function. The interface will change to
    505515    ///a better one.
     516    ///\todo Option to control whether a constraint with a single variable is
     517    ///added or not.
    506518    void setRow(Row r, Value l,const Expr &e, Value u) {
    507519      std::vector<int> indices;
  • src/lemon/lp_glpk.h

    r1326 r1328  
    2020///\file
    2121///\brief Header of the LEMON-GLPK lp solver interface.
     22///\ingroup gen_opt_group
    2223
    2324#include "lp_base.h"
     
    3233  ///
    3334  /// This class implements a lemon wrapper for GLPK.
     35  ///\ingroup gen_opt_group
    3436  class LpGlpk : public LpSolverBase {
    3537  protected:
Note: See TracChangeset for help on using the changeset viewer.