struct_misc.h
Go to the documentation of this file.
31 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
70 * Elements are stored in an array, which grows dynamically in size as new elements are added to the queue.
72 * 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$ )
73 * 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
74 * \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$ .
75 * At any time, the condition holds that \f$ p \leq q \f$ for each parent \f$ p \f$ and its children \f$ q \f$ .
82 SCIP_DECL_PQUEUEELEMCHGPOS((*elemchgpos));/**< callback to act on position change of elem in priority queue, or NULL */
222 int** successors; /**< adjacency list: for each node (first dimension) list of all successors */
223 void*** arcdata; /**< arc data corresponding to the arcs to successors given by the successors array */
227 int* components; /**< array to store the node indices of the components, one component after the other */
228 int* componentstarts; /**< array to store the start indices of the components in the components array */
229 int* articulations; /**< array of size narticulations to store the node indices of the articulation points */
234 SCIP_Bool articulationscheck; /**< TRUE if the (computed) articulation nodes are up-to-date and FALSE otherwise */
276 /** disjoint set (disjoint set (union find)) data structure for querying and updating connectedness in a graph with integer vertices 0,...,n - 1 */
297 SCIP_Bool recordmodifications;/**< whether to remember variables which coefficients were modified during cleanup */
Definition: struct_misc.h:201
Definition: struct_misc.h:54
Definition: struct_misc.h:190
type definitions for miscellaneous datastructures
Definition: struct_misc.h:254
Definition: struct_misc.h:78
Definition: struct_misc.h:104
Definition: struct_misc.h:149
Definition: struct_var.h:207
Definition: struct_misc.h:111
Definition: struct_misc.h:247
Definition: struct_misc.h:268
Definition: struct_misc.h:46
Definition: struct_misc.h:137
Definition: struct_misc.h:157
Definition: struct_misc.h:60
Definition: struct_misc.h:168
Definition: struct_misc.h:130
Definition: struct_misc.h:179
Definition: struct_misc.h:238
Definition: struct_misc.h:209
Definition: struct_misc.h:89
Definition: struct_misc.h:123
Definition: struct_misc.h:277
common defines and data types used in all packages of SCIP
Definition: struct_misc.h:219
Definition: struct_misc.h:286
memory allocation routines