COIN-OR::LEMON - Graph Library

Changeset 1326:85f1c483279e in lemon-0.x for src/lemon/lp_glpk.h


Ignore:
Timestamp:
04/08/05 16:40:37 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1765
Message:

Add presolver() to turn on/off the GLPK presolver

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/lp_glpk.h

    r1321 r1326  
    2323#include "lp_base.h"
    2424extern "C" {
    25 #include "glpk.h"
     25#include <glpk.h>
    2626}
    2727
     
    7777    ///Set the verbosity of the messages
    7878
     79    ///Set the verbosity of the messages
     80    ///
    7981    ///\param m is the level of the messages output by the solver routines.
    8082    ///The possible values are:
     
    8486    ///- 3 --- full output (includes informational messages)
    8587    void messageLevel(int m);
     88    ///Turns on or off the presolver
     89
     90    ///Turns on (\c b is \c true) or off (\c b is \c false) the presolver
     91    ///
     92    ///The presolver is off by default.
     93    void presolver(bool b);
    8694   
    8795  };
Note: See TracChangeset for help on using the changeset viewer.