Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v9-minor'
Browse files Browse the repository at this point in the history
  • Loading branch information
scip-ci committed Jun 19, 2024
2 parents c9b7758 + de18663 commit 7cb8f49
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ Fixed bugs
- make arithmetics in cuts.c more robust to avoid invalid scg cuts due to numerical rounding sensitivity
- allow to copy cons_pseudoboolean even if no AND constraints are present in order to avoid a warning
- set value for variable that is introduced to reformulate nonlinear objective function when reading .nl files with initial solution
- fixed that multi-aggregations from PaPILO were accepted without ensuring that their bounds hold

Miscellaneous
-------------
Expand Down Expand Up @@ -197,7 +198,6 @@ Fixed bugs
- update effective root depth iteratively to avoid trapping it at a single child node
- fixed that dualsparsify presolver did not always check do-not-multiaggregate variable flag
- fixed bug in computing elements of orbits in orbital reduction
- fixed that multi-aggregations from PaPILO were accepted without ensuring that their bounds hold

Miscellaneous
-------------
Expand Down
2 changes: 1 addition & 1 deletion src/objscip/objbenders.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/**@file objbenders.h
* @brief C++ wrapper for Benders' decomposition
* @brief C++ wrapper for the Benders' decomposition plugins
* @author Stephen J. Maher
*/

Expand Down
4 changes: 2 additions & 2 deletions src/objscip/objbenderscut.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/**@file objbenderscut.h
* @brief C++ wrapper for Benders' decomposition cuts
* @brief C++ wrapper for the Benders' decomposition cut plugins
* @author Stephen J. Maher
*/

Expand All @@ -44,7 +44,7 @@
namespace scip
{

/** @brief C++ wrapper for Benders' decomposition cut
/** @brief C++ wrapper for Benders' decomposition cut plugin
*
* This class defines the interface for the Benders' decomposition cuts implemented in C++. Note that there is
* a pure virtual function (this must be implemented). This function is: benderscut_exec().
Expand Down
2 changes: 1 addition & 1 deletion src/objscip/objnodesel.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
namespace scip
{

/** @brief C++ wrapper for primal heuristics
/** @brief C++ wrapper for node selectors
*
* This class defines the interface for node selectors implemented in C++. Note that there is a pure virtual
* function (this function has to be implemented). This function is: scip_comp().
Expand Down
2 changes: 1 addition & 1 deletion src/objscip/objreader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/**@file objreader.cpp
* @brief C++ wrapper for file readers
* @brief C++ wrapper for file readers and writers
* @author Tobias Achterberg
*/

Expand Down
2 changes: 1 addition & 1 deletion src/objscip/objrelax.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/**@file objrelax.cpp
* @brief C++ wrapper for relaxators
* @brief C++ wrapper for relaxation handlers
* @author Tobias Achterberg
*/

Expand Down
2 changes: 1 addition & 1 deletion src/scip/scip_copy.c
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,7 @@ SCIP_RETCODE copyVars(
SCIP_Bool infeasible;
SCIP_Bool fixed;

if( SCIPvarIsRelaxationOnly(sourcevars[i]) )
if( SCIPvarIsRelaxationOnly(fixedvars[i]) )
continue;

/* retrieve target variable as image of the source variable */
Expand Down

0 comments on commit 7cb8f49

Please sign in to comment.