CoinMP: fix mips*
This commit is contained in:
parent
f11dd09830
commit
f0c1b79f62
|
@ -0,0 +1,15 @@
|
|||
Avoid `mips' as a parameter name. It is a reserved name for mips* targets.
|
||||
|
||||
--- Cbc/src/CbcModel.hpp 2015-07-07 22:44:40.000000000 +0200
|
||||
+++ Cbc/src/CbcModel.hpp 2018-01-14 13:49:12.277278333 +0100
|
||||
@@ -2394,8 +2394,8 @@
|
||||
void redoWalkBack();
|
||||
//@}
|
||||
|
||||
- void setMIPStart( const std::vector< std::pair< std::string, double > > &mips ) {
|
||||
- this->mipStart_ = mips;
|
||||
+ void setMIPStart( const std::vector< std::pair< std::string, double > > &start ) {
|
||||
+ this->mipStart_ = start;
|
||||
}
|
||||
|
||||
const std::vector< std::pair< std::string, double > > &getMIPStart() {
|
Loading…
Reference in New Issue