genmodel 0.0.34 → 0.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/Genmodel/GenModelOsi.cpp +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ca0cc9edf1f6ef9f890c42f8419e15c749e02a0
|
4
|
+
data.tar.gz: e6c826c837c243e4820bb19315e3fb1df17ff994
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1009916247bc14c4e9847ecc218bad9ae8994cc7b79683445aa729d58db6226af4f490f7256523e8d95d87dafc6e610ddd0e3dbce49bce8ffbaf73393e0c65c
|
7
|
+
data.tar.gz: 4fb87b6db3d4aa76bf087226135f7607634c3153e697fa456000d050a577cfc798a631d132e93a1fb9c6af93c064ab7cb7df467ab6ff8d309d4bbe99bb0374b6
|
@@ -278,7 +278,7 @@ long GenModelOsi::Solve()
|
|
278
278
|
}
|
279
279
|
|
280
280
|
//hassolution = d->mipmodel->bestSolution() != NULL;
|
281
|
-
printf("Number of solution = %d\n", d->mipmodel->getSolutionCount());
|
281
|
+
//printf("Number of solution = %d\n", d->mipmodel->getSolutionCount());
|
282
282
|
hassolution = d->mipmodel->getSolutionCount() > 0;
|
283
283
|
objval = d->mult*d->mipmodel->getObjValue();
|
284
284
|
|