Scippy

    SCIP

    Solving Constraint Integer Programs

    SCIP_CharParam Struct Reference

    Detailed Description

    data for char parameters

    Definition at line 89 of file struct_paramset.h.

    #include <struct_paramset.h>

    Data Fields

    char * valueptr
     
    char * allowedvalues
     
    char curvalue
     
    char defaultvalue
     

    Field Documentation

    ◆ valueptr

    char* SCIP_CharParam::valueptr

    pointer to store the current parameter value, or NULL

    Definition at line 91 of file struct_paramset.h.

    Referenced by SCIPparamGetChar(), SCIPparamSetChar(), and SCIPparamsetCheckValuePtrUnique().

    ◆ allowedvalues

    char* SCIP_CharParam::allowedvalues

    array with possible parameter values, or NULL if not restricted

    Definition at line 92 of file struct_paramset.h.

    Referenced by paramTestChar(), paramWrite(), SCIPparamGetCharAllowedValues(), and SCIPparamIsValidChar().

    ◆ curvalue

    char SCIP_CharParam::curvalue

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

    Definition at line 93 of file struct_paramset.h.

    Referenced by SCIPparamGetChar(), and SCIPparamSetChar().

    ◆ defaultvalue

    char SCIP_CharParam::defaultvalue

    default value of the parameter

    Definition at line 94 of file struct_paramset.h.

    Referenced by paramWrite(), SCIPparamGetCharDefault(), and SCIPparamSetDefaultChar().