File tree 7 files changed +8
-8
lines changed
7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ Fixed bugs
86
86
- make arithmetics in cuts.c more robust to avoid invalid scg cuts due to numerical rounding sensitivity
87
87
- allow to copy cons_pseudoboolean even if no AND constraints are present in order to avoid a warning
88
88
- set value for variable that is introduced to reformulate nonlinear objective function when reading .nl files with initial solution
89
+ - fixed that multi-aggregations from PaPILO were accepted without ensuring that their bounds hold
89
90
90
91
Miscellaneous
91
92
-------------
@@ -126,7 +127,6 @@ Fixed bugs
126
127
- update effective root depth iteratively to avoid trapping it at a single child node
127
128
- fixed that dualsparsify presolver did not always check do-not-multiaggregate variable flag
128
129
- fixed bug in computing elements of orbits in orbital reduction
129
- - fixed that multi-aggregations from PaPILO were accepted without ensuring that their bounds hold
130
130
131
131
Miscellaneous
132
132
-------------
Original file line number Diff line number Diff line change 23
23
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
24
24
25
25
/* *@file objbenders.h
26
- * @brief C++ wrapper for Benders' decomposition
26
+ * @brief C++ wrapper for the Benders' decomposition plugins
27
27
* @author Stephen J. Maher
28
28
*/
29
29
Original file line number Diff line number Diff line change 23
23
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
24
24
25
25
/* *@file objbenderscut.h
26
- * @brief C++ wrapper for Benders' decomposition cuts
26
+ * @brief C++ wrapper for the Benders' decomposition cut plugins
27
27
* @author Stephen J. Maher
28
28
*/
29
29
44
44
namespace scip
45
45
{
46
46
47
- /* * @brief C++ wrapper for Benders' decomposition cut
47
+ /* * @brief C++ wrapper for Benders' decomposition cut plugin
48
48
*
49
49
* This class defines the interface for the Benders' decomposition cuts implemented in C++. Note that there is
50
50
* a pure virtual function (this must be implemented). This function is: benderscut_exec().
Original file line number Diff line number Diff line change 41
41
namespace scip
42
42
{
43
43
44
- /* * @brief C++ wrapper for primal heuristics
44
+ /* * @brief C++ wrapper for node selectors
45
45
*
46
46
* This class defines the interface for node selectors implemented in C++. Note that there is a pure virtual
47
47
* function (this function has to be implemented). This function is: scip_comp().
Original file line number Diff line number Diff line change 23
23
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
24
24
25
25
/* *@file objreader.cpp
26
- * @brief C++ wrapper for file readers
26
+ * @brief C++ wrapper for file readers and writers
27
27
* @author Tobias Achterberg
28
28
*/
29
29
Original file line number Diff line number Diff line change 23
23
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
24
24
25
25
/* *@file objrelax.cpp
26
- * @brief C++ wrapper for relaxators
26
+ * @brief C++ wrapper for relaxation handlers
27
27
* @author Tobias Achterberg
28
28
*/
29
29
Original file line number Diff line number Diff line change @@ -1050,7 +1050,7 @@ SCIP_RETCODE copyVars(
1050
1050
SCIP_Bool infeasible ;
1051
1051
SCIP_Bool fixed ;
1052
1052
1053
- if ( SCIPvarIsRelaxationOnly (sourcevars [i ]) )
1053
+ if ( SCIPvarIsRelaxationOnly (fixedvars [i ]) )
1054
1054
continue ;
1055
1055
1056
1056
/* retrieve target variable as image of the source variable */
You can’t perform that action at this time.
0 commit comments