Changeset 1206:86a5b114a066 in lemon-main
- Timestamp:
- 01/20/21 16:31:29 (4 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- lemon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified lemon/clp.cc ¶
r1205 r1206 462 462 } 463 463 464 void ClpLp::_write(std::string file, std::string format) const 465 { 466 if(format == "LP") 467 _prob->writeLp(file.c_str(), "", 1e-5, 10, 5, 468 sense()==ClpLp::MIN?1:-1, 469 true 470 ); 471 else throw UnsupportedFormatError(format); 472 } 473 464 474 } //END OF NAMESPACE LEMON -
TabularUnified lemon/clp.h ¶
r1130 r1206 140 140 virtual void _messageLevel(MessageLevel); 141 141 142 void _write(std::string file, std::string format) const; 143 142 144 public: 143 145
Note: See TracChangeset
for help on using the changeset viewer.