Scippy

SCIP

Solving Constraint Integer Programs

SCIP_EventQueue Struct Reference

Detailed Description

event queue to cache events and process them later

Definition at line 205 of file struct_event.h.

#include <struct_event.h>

Data Fields

SCIP_EVENT ** events
 
int eventssize
 
int nevents
 
SCIP_Bool delayevents
 

Field Documentation

◆ events

SCIP_EVENT** SCIP_EventQueue::events

array with queued events

Definition at line 207 of file struct_event.h.

Referenced by eventqueueEnsureEventsMem(), and SCIPeventqueueProcess().

◆ eventssize

int SCIP_EventQueue::eventssize

number of available slots in events array

Definition at line 208 of file struct_event.h.

Referenced by eventqueueEnsureEventsMem().

◆ nevents

int SCIP_EventQueue::nevents

number of events in queue (used slots if events array)

Definition at line 209 of file struct_event.h.

Referenced by eventqueueAppend(), and SCIPeventqueueProcess().

◆ delayevents

SCIP_Bool SCIP_EventQueue::delayevents

should the events be delayed and processed later?

Definition at line 210 of file struct_event.h.

Referenced by eventqueueAppend(), SCIPeventqueueAdd(), SCIPeventqueueDelay(), SCIPeventqueueIsDelayed(), and SCIPeventqueueProcess().