Scippy

SCIP

Solving Constraint Integer Programs

SCIP_Digraph Struct Reference

Detailed Description

digraph structure to store and handle graphs

Definition at line 171 of file struct_misc.h.

#include <struct_misc.h>

Data Fields

int ** successors
 
void *** arcdata
 
void ** nodedata
 
int * successorssize
 
int * nsuccessors
 
int * components
 
int * componentstarts
 
int ncomponents
 
int componentstartsize
 
int nnodes
 

Field Documentation

void*** SCIP_Digraph::arcdata

arc data corresponding to the arcs to successors given by the successors array

Definition at line 174 of file struct_misc.h.

Referenced by ensureSuccessorsSize(), SCIPdigraphAddArc(), SCIPdigraphAddArcSafe(), SCIPdigraphCopy(), SCIPdigraphGetSuccessorsData(), SCIPdigraphResize(), and SCIPdigraphSetSizes().

void** SCIP_Digraph::nodedata

data for each node of graph

Definition at line 175 of file struct_misc.h.

Referenced by SCIPdigraphCopy(), SCIPdigraphGetNodeData(), SCIPdigraphResize(), and SCIPdigraphSetNodeData().

int* SCIP_Digraph::successorssize
int* SCIP_Digraph::components
int* SCIP_Digraph::componentstarts
int SCIP_Digraph::ncomponents
int SCIP_Digraph::componentstartsize

size of array componentstarts

Definition at line 181 of file struct_misc.h.

Referenced by SCIPdigraphComputeUndirectedComponents(), SCIPdigraphFreeComponents(), and SCIPdigraphGetNComponents().