struct_misc.h
Go to the documentation of this file.
22 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
56 * Elements are stored in an array, which grows dynamically in size as new elements are added to the queue.
58 * The array is organized as follows. The root element (that is the "best" element $r$ with $r <= x$ for all $x$)
59 * is stored in position 0. The children of an element at position $p$ are stored at positions $q_1 = 2*p+1$ and
60 * $q_2 = 2*p+2$. That means, the parent of the element at position $q$ is at position $p = (q-1)/2$.
205 int** successors; /**< adjacency list: for each node (first dimension) list of all successors */
206 void*** arcdata; /**< arc data corresponding to the arcs to successors given by the successors array */
210 int* components; /**< array to store the node indices of the components, one component after the other */
211 int* componentstarts; /**< array to store the start indices of the components in the components array */
256 /** disjoint set (disjoint set (union find)) data structure for querying and updating connectedness in a graph with integer vertices 0,...,n - 1 */
Definition: struct_misc.h:184
Definition: struct_misc.h:173
type definitions for miscellaneous datastructures
Definition: struct_misc.h:234
Definition: struct_misc.h:64
Definition: struct_misc.h:89
Definition: struct_misc.h:132
Definition: struct_var.h:198
Definition: struct_misc.h:96
Definition: struct_misc.h:227
Definition: struct_misc.h:248
Definition: struct_misc.h:37
Definition: struct_misc.h:121
Definition: struct_misc.h:140
Definition: struct_misc.h:46
Definition: struct_misc.h:151
Definition: struct_misc.h:114
Definition: struct_misc.h:162
Definition: struct_misc.h:218
Definition: struct_misc.h:192
Definition: struct_misc.h:74
Definition: struct_misc.h:108
Definition: struct_misc.h:257
common defines and data types used in all packages of SCIP
Definition: struct_misc.h:202
memory allocation routines