Scippy

    SCIP

    Solving Constraint Integer Programs

    SCIP_IntParam Struct Reference

    Detailed Description

    data for int parameters

    Definition at line 56 of file struct_paramset.h.

    #include <struct_paramset.h>

    Data Fields

    int * valueptr
     
    int curvalue
     
    int defaultvalue
     
    int minvalue
     
    int maxvalue
     

    Field Documentation

    ◆ valueptr

    int* SCIP_IntParam::valueptr

    pointer to store the current parameter value, or NULL

    Definition at line 58 of file struct_paramset.h.

    Referenced by SCIPparamGetInt(), SCIPparamsetCheckValuePtrUnique(), and SCIPparamSetInt().

    ◆ curvalue

    int SCIP_IntParam::curvalue

    stores the current parameter value if it is not stored in *valueptr

    Definition at line 59 of file struct_paramset.h.

    Referenced by SCIPparamGetInt(), and SCIPparamSetInt().

    ◆ defaultvalue

    int SCIP_IntParam::defaultvalue

    default value of the parameter

    Definition at line 60 of file struct_paramset.h.

    Referenced by paramWrite(), SCIPparamGetIntDefault(), and SCIPparamSetDefaultInt().

    ◆ minvalue

    int SCIP_IntParam::minvalue

    minimum value for parameter

    Definition at line 61 of file struct_paramset.h.

    Referenced by paramTestInt(), paramWrite(), SCIPparamGetIntMin(), SCIPparamIsValidInt(), and SCIPparamSetDefaultInt().

    ◆ maxvalue

    int SCIP_IntParam::maxvalue

    maximum value for parameter

    Definition at line 62 of file struct_paramset.h.

    Referenced by paramTestInt(), paramWrite(), SCIPparamGetIntMax(), and SCIPparamSetDefaultInt().