Changes in lemon/cplex.h [793:e4554cd6b2bf:1347:0900cfe4a84d] in lemon
- File:
-
- 1 edited
-
lemon/cplex.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lemon/cplex.h
r793 r1347 3 3 * This file is a part of LEMON, a generic C++ optimization library. 4 4 * 5 * Copyright (C) 2003-20 095 * Copyright (C) 2003-2013 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). … … 24 24 25 25 #include <lemon/lp_base.h> 26 #include <lemon/bits/lock.h> 26 27 27 28 struct cpxenv; … … 41 42 cpxenv* _env; 42 43 mutable int* _cnt; 43 44 mutable bits::Lock* _cnt_lock; 45 46 void incCnt(); 47 void decCnt(); 48 44 49 public: 45 50 … … 151 156 bool _message_enabled; 152 157 158 void _write(std::string file, std::string format) const; 159 153 160 public: 154 161 … … 171 178 const cpxlp* cplexLp() const { return _prob; } 172 179 180 #ifdef DOXYGEN 181 /// Write the problem or the solution to a file in the given format 182 183 /// This function writes the problem or the solution 184 /// to a file in the given format. 185 /// Trying to write in an unsupported format will trigger 186 /// \ref lemon::LpBase::UnsupportedFormatError "UnsupportedFormatError". 187 /// \param file The file path 188 /// \param format The output file format. 189 /// Supportted formats are "MPS", "LP" and "SOL". 190 void write(std::string file, std::string format = "MPS") const {} 191 #endif 192 173 193 }; 174 194
Note: See TracChangeset
for help on using the changeset viewer.

