File tree 2 files changed +25
-2
lines changed
2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change
1
+ @page RN11 Release notes for VIPR 1.1
2
+
3
+ Features:
4
+ -----------
5
+ - handling of incomplete derivations (see Certificate Version 1.1)
6
+
7
+ Build system
8
+ ------------
9
+
10
+ Fixed bugs
11
+ -----------
12
+ - all constraints are now considered for checking the feasibility of solutions
13
+ - improved error messages
14
+
15
+ Data structures
16
+ -----------
17
+
18
+
19
+ @page RN10 Release notes for VIPR 1.0
20
+
21
+ Features:
22
+ -----------
23
+ - verify the correctness of results computed by mixed-integer linear programming solvers by verifying the certificates in VIPR 1.0 format
Original file line number Diff line number Diff line change @@ -760,9 +760,9 @@ bool processSOL()
760
760
761
761
for ( int j = 0 ; j < numberOfConstraints; ++j )
762
762
{
763
- if ( !satisfies (constraint[i ], solutionSpecified) )
763
+ if ( !satisfies (constraint[j ], solutionSpecified) )
764
764
{
765
- cerr << " Constraint " << i << " not satisfied." << endl;
765
+ cerr << " Constraint " << j << " not satisfied." << endl;
766
766
goto TERMINATE;
767
767
}
768
768
}
You can’t perform that action at this time.
0 commit comments