variable graph data structure to determine breadth-first distances between variables
the variable graph internally stores a mapping from the variables to the constraints in which they appear.
Definition at line 114 of file struct_heur.h.
#include <struct_heur.h>
Data Fields | |
| SCIP_CONS *** | varconss |
| SCIP_HASHTABLE * | visitedconss |
| int * | nvarconss |
| int * | varconssize |
| SCIP_CONS*** SCIP_VGraph::varconss |
constraints of each variable
Definition at line 116 of file struct_heur.h.
Referenced by fillVariableGraph(), and SCIPvariablegraphBreadthFirst().
| SCIP_HASHTABLE* SCIP_VGraph::visitedconss |
hash table that keeps a record of visited constraints during breadth-first search
Definition at line 117 of file struct_heur.h.
Referenced by SCIPvariablegraphBreadthFirst().
| int* SCIP_VGraph::nvarconss |
number of constraints for each variable
Definition at line 118 of file struct_heur.h.
Referenced by fillVariableGraph(), and SCIPvariablegraphBreadthFirst().
| int* SCIP_VGraph::varconssize |
size array for every varconss entry
Definition at line 119 of file struct_heur.h.
Referenced by fillVariableGraph().