Changeset 623:745e182d0139 in lemon for lemon/lp_base.h
- Timestamp:
- 04/08/09 22:49:28 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/lp_base.h
r587 r623 69 69 MAX 70 70 }; 71 72 ///Enum for \c messageLevel() parameter 73 enum MessageLevel { 74 /// no output (default value) 75 MESSAGE_NOTHING, 76 /// error messages only 77 MESSAGE_ERROR, 78 /// warnings 79 MESSAGE_WARNING, 80 /// normal output 81 MESSAGE_NORMAL, 82 /// verbose output 83 MESSAGE_VERBOSE 84 }; 85 71 86 72 87 ///The floating point type used by the solver … … 974 989 virtual const char* _solverName() const = 0; 975 990 991 virtual void _messageLevel(MessageLevel level) = 0; 992 976 993 //Own protected stuff 977 994 … … 1528 1545 void clear() { _clear(); } 1529 1546 1547 /// Sets the message level of the solver 1548 void messageLevel(MessageLevel level) { _messageLevel(level); } 1549 1530 1550 ///@} 1531 1551
Note: See TracChangeset
for help on using the changeset viewer.