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 Jan 27, 2025
2 parents efcf99a + a5b6bf1 commit 101d047
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 39 deletions.
56 changes: 28 additions & 28 deletions src/scip/paramset.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ SCIP_RETCODE paramSetBool(
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
const char* paramname, /**< parameter name */
SCIP_Bool value, /**< new value of the parameter */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameter be set quietly (no output)? */
)
{
SCIP_PARAM* param;
Expand Down Expand Up @@ -383,7 +383,7 @@ SCIP_RETCODE paramSetChar(
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
const char* paramname, /**< parameter name */
char value, /**< new value of the parameter */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameter be set quietly (no output)? */
)
{
SCIP_PARAM* param;
Expand Down Expand Up @@ -419,7 +419,7 @@ SCIP_RETCODE paramSetInt(
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
const char* paramname, /**< parameter name */
int value, /**< new value of the parameter */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameter be set quietly (no output)? */
)
{
SCIP_PARAM* param;
Expand Down Expand Up @@ -455,7 +455,7 @@ SCIP_RETCODE paramSetLongint(
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
const char* paramname, /**< parameter name */
SCIP_Longint value, /**< new value of the parameter */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameter be set quietly (no output)? */
)
{
SCIP_PARAM* param;
Expand Down Expand Up @@ -491,7 +491,7 @@ SCIP_RETCODE paramSetReal(
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
const char* paramname, /**< parameter name */
SCIP_Real value, /**< new value of the parameter */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameter be set quietly (no output)? */
)
{
SCIP_PARAM* param;
Expand Down Expand Up @@ -2836,7 +2836,7 @@ SCIP_RETCODE paramsetSetHeuristicsDefault(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{ /*lint --e{715}*/
SCIP_HEUR** heurs;
Expand Down Expand Up @@ -2884,7 +2884,7 @@ SCIP_RETCODE paramsetSetHeuristicsAggressive(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
SCIP_HEUR** heurs;
Expand Down Expand Up @@ -3018,7 +3018,7 @@ SCIP_RETCODE paramsetSetHeuristicsFast(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
int i;
Expand Down Expand Up @@ -3073,7 +3073,7 @@ SCIP_RETCODE paramsetSetHeuristicsOff(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
SCIP_HEUR** heurs;
Expand Down Expand Up @@ -3111,7 +3111,7 @@ SCIP_RETCODE paramsetSetPresolvingDefault(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{ /*lint --e{715}*/
SCIP_PROP** props;
Expand Down Expand Up @@ -3196,7 +3196,7 @@ SCIP_RETCODE paramsetSetPresolvingAggressive(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
SCIP_PARAM* param;
Expand Down Expand Up @@ -3272,7 +3272,7 @@ SCIP_RETCODE paramsetSetPresolvingFast(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
SCIP_CONSHDLR** conshdlrs;
Expand Down Expand Up @@ -3387,7 +3387,7 @@ SCIP_RETCODE paramsetSetPresolvingOff(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
SCIP_PRESOL** presols;
Expand Down Expand Up @@ -3465,7 +3465,7 @@ SCIP_RETCODE paramsetSetSeparatingDefault(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{ /*lint --e{715}*/
SCIP_SEPA** sepas;
Expand Down Expand Up @@ -3545,7 +3545,7 @@ SCIP_RETCODE paramsetSetSeparatingAggressive(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
SCIP_CONSHDLR** conshdlrs;
Expand Down Expand Up @@ -3719,7 +3719,7 @@ SCIP_RETCODE paramsetSetSeparatingFast(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
/* reset previous changes on separating parameters */
Expand Down Expand Up @@ -3776,7 +3776,7 @@ SCIP_RETCODE paramsetSetSeparatingOff(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
SCIP_SEPA** sepas;
Expand Down Expand Up @@ -3840,7 +3840,7 @@ SCIP_RETCODE SCIPparamsetSetEmphasis(
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_PARAMEMPHASIS paramemphasis, /**< parameter emphasis */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
switch( paramemphasis )
Expand Down Expand Up @@ -4110,7 +4110,7 @@ SCIP_RETCODE SCIPparamsetSetToSubscipsOff(
SCIP_PARAMSET* paramset, /**< parameter set */
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
SCIP_HEUR** heurs;
Expand Down Expand Up @@ -4216,7 +4216,7 @@ SCIP_RETCODE SCIPparamsetSetHeuristics(
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_PARAMSETTING paramsetting, /**< parameter settings */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
switch( paramsetting )
Expand Down Expand Up @@ -4252,7 +4252,7 @@ SCIP_RETCODE SCIPparamsetSetPresolving(
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_PARAMSETTING paramsetting, /**< parameter settings */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
switch( paramsetting )
Expand Down Expand Up @@ -4288,7 +4288,7 @@ SCIP_RETCODE SCIPparamsetSetSeparating(
SCIP_SET* set, /**< global SCIP settings */
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_PARAMSETTING paramsetting, /**< parameter settings */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameters be set quietly (no output)? */
)
{
switch( paramsetting )
Expand Down Expand Up @@ -4536,7 +4536,7 @@ SCIP_RETCODE SCIPparamSetBool(
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Bool value, /**< new value of the parameter */
SCIP_Bool initialize, /**< is this the initialization of the parameter? */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameter be set quietly (no output)? */
)
{
assert(param != NULL);
Expand Down Expand Up @@ -4598,7 +4598,7 @@ SCIP_RETCODE SCIPparamSetInt(
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
int value, /**< new value of the parameter */
SCIP_Bool initialize, /**< is this the initialization of the parameter? */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameter be set quietly (no output)? */
)
{
assert(param != NULL);
Expand Down Expand Up @@ -4660,7 +4660,7 @@ SCIP_RETCODE SCIPparamSetLongint(
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Longint value, /**< new value of the parameter */
SCIP_Bool initialize, /**< is this the initialization of the parameter? */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameter be set quietly (no output)? */
)
{
assert(param != NULL);
Expand Down Expand Up @@ -4722,7 +4722,7 @@ SCIP_RETCODE SCIPparamSetReal(
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
SCIP_Real value, /**< new value of the parameter */
SCIP_Bool initialize, /**< is this the initialization of the parameter? */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameter be set quietly (no output)? */
)
{
assert(param != NULL);
Expand Down Expand Up @@ -4786,7 +4786,7 @@ SCIP_RETCODE SCIPparamSetChar(
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
char value, /**< new value of the parameter */
SCIP_Bool initialize, /**< is this the initialization of the parameter? */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameter be set quietly (no output)? */
)
{
assert(param != NULL);
Expand Down Expand Up @@ -4847,7 +4847,7 @@ SCIP_RETCODE SCIPparamSetString(
SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */
const char* value, /**< new value of the parameter */
SCIP_Bool initialize, /**< is this the initialization of the parameter? */
SCIP_Bool quiet /**< should the parameter be set quiet (no output) */
SCIP_Bool quiet /**< should the parameter be set quietly (no output)? */
)
{
char* oldvalue = NULL;
Expand Down
Loading

0 comments on commit 101d047

Please sign in to comment.