struct_misc.h
Go to the documentation of this file.
22 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
61 * Elements are stored in an array, which grows dynamically in size as new elements are added to the queue.
63 * The array is organized as follows. The root element (that is the "best" element \f$ r \f$ with \f$ r \leq x \f$ for all \f$ x \f$ )
64 * is stored in position 0. The children of an element at position \f$ p \f$ are stored at positions \f$ q_1 = 2*p+1 \f$ and
65 * \f$ q_2 = 2*p+2 \f$ . That means, the parent of the element at position \f$ q \f$ is at position \f$ p = (q-1)/2 \f$ .
66 * At any time, the condition holds that \f$ p \leq q \f$ for each parent \f$ p \f$ and its children \f$ q \f$ .
73 SCIP_DECL_PQUEUEELEMCHGPOS((*elemchgpos));/**< callback to act on position change of elem in priority queue, or NULL */
213 int** successors; /**< adjacency list: for each node (first dimension) list of all successors */
214 void*** arcdata; /**< arc data corresponding to the arcs to successors given by the successors array */
218 int* components; /**< array to store the node indices of the components, one component after the other */
219 int* componentstarts; /**< array to store the start indices of the components in the components array */
220 int* articulations; /**< array of size narticulations to store the node indices of the articulation points */
225 SCIP_Bool articulationscheck; /**< TRUE if the (computed) articulation nodes are up-to-date and FALSE otherwise */
267 /** disjoint set (disjoint set (union find)) data structure for querying and updating connectedness in a graph with integer vertices 0,...,n - 1 */
288 SCIP_Bool recordmodifications;/**< whether to remember variables which coefficients were modified during cleanup */
Definition: struct_misc.h:192
Definition: struct_misc.h:45
Definition: struct_misc.h:181
type definitions for miscellaneous datastructures
Definition: struct_misc.h:245
Definition: struct_misc.h:69
Definition: struct_misc.h:95
Definition: struct_misc.h:140
Definition: struct_var.h:198
Definition: struct_misc.h:102
Definition: struct_misc.h:238
Definition: struct_misc.h:259
Definition: struct_misc.h:37
Definition: struct_misc.h:128
Definition: struct_misc.h:148
Definition: struct_misc.h:51
Definition: struct_misc.h:159
Definition: struct_misc.h:121
Definition: struct_misc.h:170
Definition: struct_misc.h:229
Definition: struct_misc.h:200
Definition: struct_misc.h:80
Definition: struct_misc.h:114
Definition: struct_misc.h:268
common defines and data types used in all packages of SCIP
Definition: struct_misc.h:210
Definition: struct_misc.h:277
memory allocation routines