Changeset 576:745e182d0139 in lemon-1.2 for lemon/cplex.h
- Timestamp:
- 04/08/09 22:49:28 (14 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/cplex.h
r551 r576 145 145 virtual void _clear(); 146 146 147 virtual void _messageLevel(MessageLevel level); 148 void _applyMessageLevel(); 149 150 bool _message_enabled; 151 147 152 public: 148 153 149 154 /// Returns the used \c CplexEnv instance 150 155 const CplexEnv& env() const { return _env; } 156 157 /// \brief Returns the const cpxenv pointer 151 158 /// 159 /// \note The cpxenv might be destructed with the solver. 152 160 const cpxenv* cplexEnv() const { return _env.cplexEnv(); } 153 161 162 /// \brief Returns the const cpxenv pointer 163 /// 164 /// \note The cpxenv might be destructed with the solver. 165 cpxenv* cplexEnv() { return _env.cplexEnv(); } 166 167 /// Returns the cplex problem object 154 168 cpxlp* cplexLp() { return _prob; } 169 /// Returns the cplex problem object 155 170 const cpxlp* cplexLp() const { return _prob; } 156 171
Note: See TracChangeset
for help on using the changeset viewer.