/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* */ /* This file is part of the program and library */ /* SCIP --- Solving Constraint Integer Programs */ /* */ /* Copyright 2002-2022 Zuse Institute Berlin */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); */ /* you may not use this file except in compliance with the License. */ /* You may obtain a copy of the License at */ /* */ /* http://www.apache.org/licenses/LICENSE-2.0 */ /* */ /* Unless required by applicable law or agreed to in writing, software */ /* distributed under the License is distributed on an "AS IS" BASIS, */ /* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ /* See the License for the specific language governing permissions and */ /* limitations under the License. */ /* */ /* You should have received a copy of the Apache-2.0 license */ /* along with SCIP; see the file LICENSE. If not visit scipopt.org. */ /* */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /**@file paramset.h * @ingroup INTERNALAPI * @brief internal methods for handling parameter settings * @author Tobias Achterberg * @author Timo Berthold */ /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/ #ifndef __SCIP_PARAMSET_H__ #define __SCIP_PARAMSET_H__ #include "scip/def.h" #include "blockmemshell/memory.h" #include "scip/type_set.h" #include "scip/type_retcode.h" #include "scip/type_paramset.h" #include "scip/pub_paramset.h" #include "scip/pub_misc.h" #ifdef __cplusplus extern "C" { #endif /** creates parameter set */ SCIP_RETCODE SCIPparamsetCreate( SCIP_PARAMSET** paramset, /**< pointer to store the parameter set */ BMS_BLKMEM* blkmem /**< block memory */ ); /** frees parameter set */ void SCIPparamsetFree( SCIP_PARAMSET** paramset, /**< pointer to the parameter set */ BMS_BLKMEM* blkmem /**< block memory */ ); /** creates a bool parameter, sets it to its default value, and adds it to the parameter set */ SCIP_RETCODE SCIPparamsetAddBool( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ BMS_BLKMEM* blkmem, /**< block memory */ const char* name, /**< name of the parameter */ const char* desc, /**< description of the parameter */ SCIP_Bool* valueptr, /**< pointer to store the current parameter value, or NULL */ SCIP_Bool isadvanced, /**< is this parameter an advanced parameter? */ SCIP_Bool defaultvalue, /**< default value of the parameter */ SCIP_DECL_PARAMCHGD ((*paramchgd)), /**< change information method of parameter */ SCIP_PARAMDATA* paramdata /**< locally defined parameter specific data */ ); /** creates a int parameter, sets it to its default value, and adds it to the parameter set */ SCIP_RETCODE SCIPparamsetAddInt( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ BMS_BLKMEM* blkmem, /**< block memory */ const char* name, /**< name of the parameter */ const char* desc, /**< description of the parameter */ int* valueptr, /**< pointer to store the current parameter value, or NULL */ SCIP_Bool isadvanced, /**< is this parameter an advanced parameter? */ int defaultvalue, /**< default value of the parameter */ int minvalue, /**< minimum value for parameter */ int maxvalue, /**< maximum value for parameter */ SCIP_DECL_PARAMCHGD ((*paramchgd)), /**< change information method of parameter */ SCIP_PARAMDATA* paramdata /**< locally defined parameter specific data */ ); /** creates a SCIP_Longint parameter, sets it to its default value, and adds it to the parameter set */ SCIP_RETCODE SCIPparamsetAddLongint( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ BMS_BLKMEM* blkmem, /**< block memory */ const char* name, /**< name of the parameter */ const char* desc, /**< description of the parameter */ SCIP_Longint* valueptr, /**< pointer to store the current parameter value, or NULL */ SCIP_Bool isadvanced, /**< is this parameter an advanced parameter? */ SCIP_Longint defaultvalue, /**< default value of the parameter */ SCIP_Longint minvalue, /**< minimum value for parameter */ SCIP_Longint maxvalue, /**< maximum value for parameter */ SCIP_DECL_PARAMCHGD ((*paramchgd)), /**< change information method of parameter */ SCIP_PARAMDATA* paramdata /**< locally defined parameter specific data */ ); /** creates a SCIP_Real parameter, sets it to its default value, and adds it to the parameter set */ SCIP_RETCODE SCIPparamsetAddReal( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ BMS_BLKMEM* blkmem, /**< block memory */ const char* name, /**< name of the parameter */ const char* desc, /**< description of the parameter */ SCIP_Real* valueptr, /**< pointer to store the current parameter value, or NULL */ SCIP_Bool isadvanced, /**< is this parameter an advanced parameter? */ SCIP_Real defaultvalue, /**< default value of the parameter */ SCIP_Real minvalue, /**< minimum value for parameter */ SCIP_Real maxvalue, /**< maximum value for parameter */ SCIP_DECL_PARAMCHGD ((*paramchgd)), /**< change information method of parameter */ SCIP_PARAMDATA* paramdata /**< locally defined parameter specific data */ ); /** creates a char parameter, sets it to its default value, and adds it to the parameter set */ SCIP_RETCODE SCIPparamsetAddChar( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ BMS_BLKMEM* blkmem, /**< block memory */ const char* name, /**< name of the parameter */ const char* desc, /**< description of the parameter */ char* valueptr, /**< pointer to store the current parameter value, or NULL */ SCIP_Bool isadvanced, /**< is this parameter an advanced parameter? */ char defaultvalue, /**< default value of the parameter */ const char* allowedvalues, /**< array with possible parameter values, or NULL if not restricted */ SCIP_DECL_PARAMCHGD ((*paramchgd)), /**< change information method of parameter */ SCIP_PARAMDATA* paramdata /**< locally defined parameter specific data */ ); /** creates a string parameter, sets it to its default value, and adds it to the parameter set */ SCIP_RETCODE SCIPparamsetAddString( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ BMS_BLKMEM* blkmem, /**< block memory */ const char* name, /**< name of the parameter */ const char* desc, /**< description of the parameter */ char** valueptr, /**< pointer to store the current parameter value, or NULL */ SCIP_Bool isadvanced, /**< is this parameter an advanced parameter? */ const char* defaultvalue, /**< default value of the parameter */ SCIP_DECL_PARAMCHGD ((*paramchgd)), /**< change information method of parameter */ SCIP_PARAMDATA* paramdata /**< locally defined parameter specific data */ ); /** returns whether an existing parameter is fixed */ SCIP_Bool SCIPparamsetIsFixed( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name /**< name of the parameter */ ); /** returns the pointer to an existing SCIP parameter */ SCIP_PARAM* SCIPparamsetGetParam( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name /**< name of the parameter */ ); /** gets the value of an existing SCIP_Bool parameter */ SCIP_RETCODE SCIPparamsetGetBool( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ SCIP_Bool* value /**< pointer to store the parameter */ ); /** gets the value of an existing int parameter */ SCIP_RETCODE SCIPparamsetGetInt( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ int* value /**< pointer to store the parameter */ ); /** gets the value of an existing SCIP_Longint parameter */ SCIP_RETCODE SCIPparamsetGetLongint( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ SCIP_Longint* value /**< pointer to store the parameter */ ); /** gets the value of an existing SCIP_Real parameter */ SCIP_RETCODE SCIPparamsetGetReal( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ SCIP_Real* value /**< pointer to store the parameter */ ); /** gets the value of an existing char parameter */ SCIP_RETCODE SCIPparamsetGetChar( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ char* value /**< pointer to store the parameter */ ); /** gets the value of an existing string parameter */ SCIP_RETCODE SCIPparamsetGetString( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ char** value /**< pointer to store the parameter */ ); /** changes the fixing status of an existing parameter */ SCIP_RETCODE SCIPparamsetFix( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ SCIP_Bool fixed /**< new fixing status of the parameter */ ); /** changes the value of an existing SCIP_Bool parameter */ SCIP_RETCODE SCIPparamsetSetBool( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_SET* set, /**< global SCIP settings */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ const char* name, /**< name of the parameter */ SCIP_Bool value /**< new value of the parameter */ ); /** changes the value of an existing int parameter */ SCIP_RETCODE SCIPparamsetSetInt( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_SET* set, /**< global SCIP settings */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ const char* name, /**< name of the parameter */ int value /**< new value of the parameter */ ); /** changes the value of an existing SCIP_Longint parameter */ SCIP_RETCODE SCIPparamsetSetLongint( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_SET* set, /**< global SCIP settings */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ const char* name, /**< name of the parameter */ SCIP_Longint value /**< new value of the parameter */ ); /** changes the value of an existing SCIP_Real parameter */ SCIP_RETCODE SCIPparamsetSetReal( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_SET* set, /**< global SCIP settings */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ const char* name, /**< name of the parameter */ SCIP_Real value /**< new value of the parameter */ ); /** changes the value of an existing char parameter */ SCIP_RETCODE SCIPparamsetSetChar( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_SET* set, /**< global SCIP settings */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ const char* name, /**< name of the parameter */ char value /**< new value of the parameter */ ); /** changes the value of an existing string parameter */ SCIP_RETCODE SCIPparamsetSetString( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_SET* set, /**< global SCIP settings */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ const char* name, /**< name of the parameter */ const char* value /**< new value of the parameter */ ); /** changes the default value of an existing SCIP_Bool parameter */ SCIP_RETCODE SCIPparamsetSetDefaultBool( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ SCIP_Bool defaultvalue /**< new default value of the parameter */ ); /** changes the default value of an existing int parameter */ SCIP_RETCODE SCIPparamsetSetDefaultInt( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ int defaultvalue /**< new default value of the parameter */ ); /** changes the default value of an existing SCIP_Longint parameter */ SCIP_RETCODE SCIPparamsetSetDefaultLongint( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ SCIP_Longint defaultvalue /**< new default value of the parameter */ ); /** changes the default value of an existing SCIP_Real parameter */ SCIP_RETCODE SCIPparamsetSetDefaultReal( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ SCIP_Real defaultvalue /**< new default value of the parameter */ ); /** changes the default value of an existing char parameter */ SCIP_RETCODE SCIPparamsetSetDefaultChar( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ char defaultvalue /**< new default value of the parameter */ ); /** changes the default value of an existing string parameter */ SCIP_RETCODE SCIPparamsetSetDefaultString( SCIP_PARAMSET* paramset, /**< parameter set */ const char* name, /**< name of the parameter */ const char* defaultvalue /**< new default value of the parameter */ ); /** reads parameters from a file */ SCIP_RETCODE SCIPparamsetRead( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_SET* set, /**< global SCIP settings */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ const char* filename /**< file name */ ); /** writes all parameters in the parameter set to a file */ SCIP_RETCODE SCIPparamsetWrite( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ const char* filename, /**< file name, or NULL for stdout */ SCIP_Bool comments, /**< should parameter descriptions be written as comments? */ SCIP_Bool onlychanged /**< should only the parameters been written, that are changed from default? */ ); /** installs default values for all parameters */ SCIP_RETCODE SCIPparamsetSetToDefaults( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_SET* set, /**< global SCIP settings */ SCIP_MESSAGEHDLR* messagehdlr /**< message handler */ ); /** installs default value for a single parameter */ SCIP_RETCODE SCIPparamsetSetToDefault( SCIP_PARAMSET* paramset, /**< parameter set */ SCIP_SET* set, /**< global SCIP settings */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ const char* paramname /**< name of the parameter */ ); /** sets parameters to * * - \ref SCIP_PARAMEMPHASIS_DEFAULT to use default values (see also SCIPparamsetSetToDefault()) * - \ref SCIP_PARAMEMPHASIS_COUNTER to get feasible and "fast" counting process * - \ref SCIP_PARAMEMPHASIS_CPSOLVER to get CP like search (e.g. no LP relaxation) * - \ref SCIP_PARAMEMPHASIS_EASYCIP to solve easy problems fast * - \ref SCIP_PARAMEMPHASIS_FEASIBILITY to detect feasibility fast * - \ref SCIP_PARAMEMPHASIS_HARDLP to be capable to handle hard LPs * - \ref SCIP_PARAMEMPHASIS_OPTIMALITY to prove optimality fast * - \ref SCIP_PARAMEMPHASIS_PHASEFEAS to find feasible solutions during a 3 phase solution process * - \ref SCIP_PARAMEMPHASIS_PHASEIMPROVE to find improved solutions during a 3 phase solution process * - \ref SCIP_PARAMEMPHASIS_PHASEPROOF to proof optimality during a 3 phase solution process * - \ref SCIP_PARAMEMPHASIS_NUMERICS to solve problems which cause numerical issues */ SCIP_RETCODE SCIPparamsetSetEmphasis( SCIP_PARAMSET* paramset, /**< parameter set */ 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) */ ); /** sets parameters to deactivate separators and heuristics that use auxiliary SCIP instances; should be called for * auxiliary SCIP instances to avoid recursion */ 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) */ ); /** sets heuristic parameters values to * - SCIP_PARAMSETTING_DEFAULT which are the default values of all heuristic parameters * - SCIP_PARAMSETTING_FAST such that the time spend for heuristic is decreased * - SCIP_PARAMSETTING_AGGRESSIVE such that the heuristic are called more aggregative * - SCIP_PARAMSETTING_OFF which turn off all heuristics */ SCIP_RETCODE SCIPparamsetSetHeuristics( SCIP_PARAMSET* paramset, /**< parameter set */ 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) */ ); /** sets presolving parameters to * - SCIP_PARAMSETTING_DEFAULT which are the default values of all presolving parameters * - SCIP_PARAMSETTING_FAST such that the time spend for presolving is decreased * - SCIP_PARAMSETTING_AGGRESSIVE such that the presolving is more aggregative * - SCIP_PARAMSETTING_OFF which turn off all presolving */ SCIP_RETCODE SCIPparamsetSetPresolving( SCIP_PARAMSET* paramset, /**< parameter set */ 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) */ ); /** sets separating parameters to * - SCIP_PARAMSETTING_DEFAULT which are the default values of all separating parameters * - SCIP_PARAMSETTING_FAST such that the time spend for separating is decreased * - SCIP_PARAMSETTING_AGGRESSIVE such that the separating is done more aggregative * - SCIP_PARAMSETTING_OFF which turn off all separating */ SCIP_RETCODE SCIPparamsetSetSeparating( SCIP_PARAMSET* paramset, /**< parameter set */ 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) */ ); /** returns the array of parameters */ SCIP_PARAM** SCIPparamsetGetParams( SCIP_PARAMSET* paramset /**< parameter set */ ); /** returns the number of parameters in the parameter set */ int SCIPparamsetGetNParams( SCIP_PARAMSET* paramset /**< parameter set */ ); /** copies all parameter values of the source parameter set to the corresponding parameters in the target set */ SCIP_RETCODE SCIPparamsetCopyParams( SCIP_PARAMSET* sourceparamset, /**< source parameter set */ SCIP_PARAMSET* targetparamset, /**< target parameter set */ SCIP_SET* set, /**< global SCIP settings of target SCIP */ SCIP_MESSAGEHDLR* messagehdlr /**< message handler of target SCIP */ ); /** checks whether value of SCIP_Bool parameter is valid */ SCIP_Bool SCIPparamIsValidBool( SCIP_PARAM* param, /**< parameter */ SCIP_Bool value /**< value to check */ ); /** checks whether value of integer parameter is valid */ SCIP_Bool SCIPparamIsValidInt( SCIP_PARAM* param, /**< parameter */ int value /**< value to check */ ); /** checks whether value of SCIP_Longint parameter is valid */ SCIP_Bool SCIPparamIsValidLongint( SCIP_PARAM* param, /**< parameter */ SCIP_Longint value /**< value to check */ ); /** checks whether value of SCIP_Real parameter is valid */ SCIP_Bool SCIPparamIsValidReal( SCIP_PARAM* param, /**< parameter */ SCIP_Real value /**< value to check */ ); /** checks whether value of char parameter is valid */ SCIP_Bool SCIPparamIsValidChar( SCIP_PARAM* param, /**< parameter */ const char value /**< value to check */ ); /** checks whether value of string parameter is valid */ SCIP_Bool SCIPparamIsValidString( SCIP_PARAM* param, /**< parameter */ const char* value /**< value to check */ ); /** sets value of SCIP_Bool parameter */ SCIP_RETCODE SCIPparamSetBool( SCIP_PARAM* param, /**< parameter */ SCIP_SET* set, /**< global SCIP settings, or NULL if param change method should not be called */ 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) */ ); /** sets value of int parameter */ SCIP_RETCODE SCIPparamSetInt( SCIP_PARAM* param, /**< parameter */ SCIP_SET* set, /**< global SCIP settings, or NULL if param change method should not be called */ 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) */ ); /** sets value of SCIP_Longint parameter */ SCIP_RETCODE SCIPparamSetLongint( SCIP_PARAM* param, /**< parameter */ SCIP_SET* set, /**< global SCIP settings, or NULL if param change method should not be called */ 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) */ ); /** sets value of SCIP_Real parameter */ SCIP_RETCODE SCIPparamSetReal( SCIP_PARAM* param, /**< parameter */ SCIP_SET* set, /**< global SCIP settings, or NULL if param change method should not be called */ 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) */ ); /** sets value of char parameter */ SCIP_RETCODE SCIPparamSetChar( SCIP_PARAM* param, /**< parameter */ SCIP_SET* set, /**< global SCIP settings, or NULL if param change method should not be called */ 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) */ ); /** sets value of string parameter */ SCIP_RETCODE SCIPparamSetString( SCIP_PARAM* param, /**< parameter */ SCIP_SET* set, /**< global SCIP settings, or NULL if param change method should not be called */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ const char* value, /**< new value of the parameter */ SCIP_Bool quiet /**< should the parameter be set quiet (no output) */ ); /** sets default value of SCIP_Bool parameter */ void SCIPparamSetDefaultBool( SCIP_PARAM* param, /**< parameter */ SCIP_Bool defaultvalue /**< new default value */ ); /** sets default value of int parameter */ void SCIPparamSetDefaultInt( SCIP_PARAM* param, /**< parameter */ int defaultvalue /**< new default value */ ); /** sets default value of SCIP_Longint parameter */ void SCIPparamSetDefaultLongint( SCIP_PARAM* param, /**< parameter */ SCIP_Longint defaultvalue /**< new default value */ ); /** sets default value of SCIP_Real parameter */ void SCIPparamSetDefaultReal( SCIP_PARAM* param, /**< parameter */ SCIP_Real defaultvalue /**< new default value */ ); /** sets default value of char parameter */ void SCIPparamSetDefaultChar( SCIP_PARAM* param, /**< parameter */ char defaultvalue /**< new default value */ ); /** sets default value of string parameter */ void SCIPparamSetDefaultString( SCIP_PARAM* param, /**< parameter */ const char* defaultvalue /**< new default value */ ); /** sets the parameter to its default setting */ SCIP_RETCODE SCIPparamSetToDefault( SCIP_PARAM* param, /**< parameter */ SCIP_SET* set, /**< global SCIP settings */ SCIP_MESSAGEHDLR* messagehdlr /**< message handler */ ); /** writes a single parameter to a file */ SCIP_RETCODE SCIPparamWrite( SCIP_PARAM* param, /**< parameter */ SCIP_MESSAGEHDLR* messagehdlr, /**< message handler */ const char* filename, /**< file name, or NULL for stdout */ SCIP_Bool comments, /**< should parameter descriptions be written as comments? */ SCIP_Bool onlychanged /**< should only the parameters been written, that are changed from default? */ ); #ifdef __cplusplus } #endif #endif