Skip to content

Commit de18663

Browse files
committed
Merge remote-tracking branch 'origin/v90-bugfix' into v9-minor
2 parents c734b39 + 728d70a commit de18663

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ Fixed bugs
8686
- make arithmetics in cuts.c more robust to avoid invalid scg cuts due to numerical rounding sensitivity
8787
- allow to copy cons_pseudoboolean even if no AND constraints are present in order to avoid a warning
8888
- 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
8990

9091
Miscellaneous
9192
-------------
@@ -126,7 +127,6 @@ Fixed bugs
126127
- update effective root depth iteratively to avoid trapping it at a single child node
127128
- fixed that dualsparsify presolver did not always check do-not-multiaggregate variable flag
128129
- 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
130130

131131
Miscellaneous
132132
-------------

src/objscip/objbenders.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2424

2525
/**@file objbenders.h
26-
* @brief C++ wrapper for Benders' decomposition
26+
* @brief C++ wrapper for the Benders' decomposition plugins
2727
* @author Stephen J. Maher
2828
*/
2929

src/objscip/objbenderscut.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2424

2525
/**@file objbenderscut.h
26-
* @brief C++ wrapper for Benders' decomposition cuts
26+
* @brief C++ wrapper for the Benders' decomposition cut plugins
2727
* @author Stephen J. Maher
2828
*/
2929

@@ -44,7 +44,7 @@
4444
namespace scip
4545
{
4646

47-
/** @brief C++ wrapper for Benders' decomposition cut
47+
/** @brief C++ wrapper for Benders' decomposition cut plugin
4848
*
4949
* This class defines the interface for the Benders' decomposition cuts implemented in C++. Note that there is
5050
* a pure virtual function (this must be implemented). This function is: benderscut_exec().

src/objscip/objnodesel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
namespace scip
4242
{
4343

44-
/** @brief C++ wrapper for primal heuristics
44+
/** @brief C++ wrapper for node selectors
4545
*
4646
* This class defines the interface for node selectors implemented in C++. Note that there is a pure virtual
4747
* function (this function has to be implemented). This function is: scip_comp().

src/objscip/objreader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2424

2525
/**@file objreader.cpp
26-
* @brief C++ wrapper for file readers
26+
* @brief C++ wrapper for file readers and writers
2727
* @author Tobias Achterberg
2828
*/
2929

src/objscip/objrelax.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2424

2525
/**@file objrelax.cpp
26-
* @brief C++ wrapper for relaxators
26+
* @brief C++ wrapper for relaxation handlers
2727
* @author Tobias Achterberg
2828
*/
2929

src/scip/scip_copy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1050,7 +1050,7 @@ SCIP_RETCODE copyVars(
10501050
SCIP_Bool infeasible;
10511051
SCIP_Bool fixed;
10521052

1053-
if( SCIPvarIsRelaxationOnly(sourcevars[i]) )
1053+
if( SCIPvarIsRelaxationOnly(fixedvars[i]) )
10541054
continue;
10551055

10561056
/* retrieve target variable as image of the source variable */

0 commit comments

Comments
 (0)