src/lemon/lp_glpk.h
changeset 1326 85f1c483279e
parent 1321 bc3a4c498eb2
child 1328 a8dd11348853
     1.1 --- a/src/lemon/lp_glpk.h	Fri Apr 08 14:21:40 2005 +0000
     1.2 +++ b/src/lemon/lp_glpk.h	Fri Apr 08 14:40:37 2005 +0000
     1.3 @@ -22,7 +22,7 @@
     1.4  
     1.5  #include "lp_base.h"
     1.6  extern "C" {
     1.7 -#include "glpk.h"
     1.8 +#include <glpk.h>
     1.9  }
    1.10  
    1.11  namespace lemon {
    1.12 @@ -76,6 +76,8 @@
    1.13    public:
    1.14      ///Set the verbosity of the messages
    1.15  
    1.16 +    ///Set the verbosity of the messages
    1.17 +    ///
    1.18      ///\param m is the level of the messages output by the solver routines.
    1.19      ///The possible values are:
    1.20      ///- 0 --- no output (default value)
    1.21 @@ -83,6 +85,12 @@
    1.22      ///- 2 --- normal output
    1.23      ///- 3 --- full output (includes informational messages)
    1.24      void messageLevel(int m);
    1.25 +    ///Turns on or off the presolver
    1.26 +
    1.27 +    ///Turns on (\c b is \c true) or off (\c b is \c false) the presolver
    1.28 +    ///
    1.29 +    ///The presolver is off by default.
    1.30 +    void presolver(bool b);
    1.31      
    1.32    };
    1.33  } //END OF NAMESPACE LEMON