summaryrefslogtreecommitdiffstats
path: root/external/coinmp/bind2nd.patch.1
diff options
context:
space:
mode:
Diffstat (limited to 'external/coinmp/bind2nd.patch.1')
-rw-r--r--external/coinmp/bind2nd.patch.113
1 files changed, 13 insertions, 0 deletions
diff --git a/external/coinmp/bind2nd.patch.1 b/external/coinmp/bind2nd.patch.1
new file mode 100644
index 0000000000..6ef10a03e1
--- /dev/null
+++ b/external/coinmp/bind2nd.patch.1
@@ -0,0 +1,13 @@
+--- a/Osi/src/OsiCommonTest/OsiSolverInterfaceTest.cpp
++++ b/Osi/src/OsiCommonTest/OsiSolverInterfaceTest.cpp
+@@ -1313,8 +1313,8 @@
+ int rows_to_delete_arr[] = { 0 } ;
+ si->deleteRows(1,rows_to_delete_arr) ;
+
+- std::transform(objective,objective+4,objective,
+- std::bind2nd(std::plus<double>(),0.15)) ;
++ for (int i = 0; i != 4; ++i)
++ objective[i] += 0.15;
+ si->setObjective(objective) ;
+ si->resolve() ;
+ OSIUNITTEST_ASSERT_ERROR(si->isProvenOptimal(), return false, *si, "test16SebastianNowozin second resolve");