Scippy

SCIP

Solving Constraint Integer Programs

SCIP_Queue Struct Reference

Detailed Description

(circular) Queue data structure

Definition at line 45 of file struct_misc.h.

#include <struct_misc.h>

Data Fields

SCIP_Real sizefac
 
void ** slots
 
int firstfree
 
int firstused
 
int size
 

Field Documentation

SCIP_Real SCIP_Queue::sizefac

memory growing factor

Definition at line 47 of file struct_misc.h.

Referenced by queueResize().

void** SCIP_Queue::slots

array of element slots

Definition at line 48 of file struct_misc.h.

Referenced by queueResize(), SCIPqueueFirst(), SCIPqueueInsert(), and SCIPqueueRemove().

int SCIP_Queue::firstfree
int SCIP_Queue::firstused
int SCIP_Queue::size

total number of available element slots

Definition at line 51 of file struct_misc.h.

Referenced by queueResize(), SCIPqueueFirst(), SCIPqueueInsert(), SCIPqueueIsEmpty(), SCIPqueueNElems(), and SCIPqueueRemove().