Scippy

    SCIP

    Solving Constraint Integer Programs

    type_datatree.h
    Go to the documentation of this file.
    1/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    2/* */
    3/* This file is part of the program and library */
    4/* SCIP --- Solving Constraint Integer Programs */
    5/* */
    6/* Copyright (c) 2002-2025 Zuse Institute Berlin (ZIB) */
    7/* */
    8/* Licensed under the Apache License, Version 2.0 (the "License"); */
    9/* you may not use this file except in compliance with the License. */
    10/* You may obtain a copy of the License at */
    11/* */
    12/* http://www.apache.org/licenses/LICENSE-2.0 */
    13/* */
    14/* Unless required by applicable law or agreed to in writing, software */
    15/* distributed under the License is distributed on an "AS IS" BASIS, */
    16/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
    17/* See the License for the specific language governing permissions and */
    18/* limitations under the License. */
    19/* */
    20/* You should have received a copy of the Apache-2.0 license */
    21/* along with SCIP; see the file LICENSE. If not visit scipopt.org. */
    22/* */
    23/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    24
    25/**@file type_datatree.h
    26 * @ingroup TYPEDEFINITIONS
    27 * @brief type definitions for data tree
    28 * @author Mohammed Ghannam
    29 */
    30
    31/*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
    32
    33#ifndef __SCIP_TYPE_DATATREE_H__
    34#define __SCIP_TYPE_DATATREE_H__
    35
    36#ifdef __cplusplus
    37extern "C" {
    38#endif
    39
    40/** type of values stored in a SCIP_DATATREE */
    42{
    43 SCIP_DATATREE_BOOL, /**< a SCIP_Bool value */
    44 SCIP_DATATREE_LONG, /**< a SCIP_Longint integer value */
    45 SCIP_DATATREE_REAL, /**< a SCIP_Real floating point value */
    46 SCIP_DATATREE_STRING, /**< a C string */
    47 SCIP_DATATREE_BOOLARRAY,/**< an array of SCIP_Bool values */
    48 SCIP_DATATREE_LONGARRAY,/**< an array of SCIP_Longint values */
    49 SCIP_DATATREE_REALARRAY,/**< an array of SCIP_Real values */
    50 SCIP_DATATREE_STRINGARRAY,/**< an array of C strings */
    51 SCIP_DATATREE_DATATREE, /**< a SCIP_DATATREE object */
    52};
    53
    54/** type of values stored in a SCIP_DATATREE */
    56
    57/** generic hierarchical data storage */
    59
    60#ifdef __cplusplus
    61}
    62#endif
    63
    64#endif
    SCIP_Datatree_Valuetype
    Definition: type_datatree.h:42
    @ SCIP_DATATREE_REALARRAY
    Definition: type_datatree.h:49
    @ SCIP_DATATREE_LONGARRAY
    Definition: type_datatree.h:48
    @ SCIP_DATATREE_BOOLARRAY
    Definition: type_datatree.h:47
    @ SCIP_DATATREE_LONG
    Definition: type_datatree.h:44
    @ SCIP_DATATREE_REAL
    Definition: type_datatree.h:45
    @ SCIP_DATATREE_DATATREE
    Definition: type_datatree.h:51
    @ SCIP_DATATREE_STRING
    Definition: type_datatree.h:46
    @ SCIP_DATATREE_BOOL
    Definition: type_datatree.h:43
    @ SCIP_DATATREE_STRINGARRAY
    Definition: type_datatree.h:50
    enum SCIP_Datatree_Valuetype SCIP_DATATREE_VALUETYPE
    Definition: type_datatree.h:55