Scippy

SCIP

Solving Constraint Integer Programs

SCIP_Job Struct Reference

Detailed Description

A job added to the queue

Definition at line 71 of file tpi_openmp.c.

Data Fields

int jobid
 
struct SCIP_Jobnextjob
 
SCIP_RETCODE(* jobfunc )(void *args)
 
void * args
 
SCIP_RETCODE retcode
 

Field Documentation

◆ jobid

int SCIP_Job::jobid

id to identify jobs from a common process

Definition at line 73 of file tpi_openmp.c.

Referenced by checkJobQueue(), and SCIPtpiSubmitJob().

◆ nextjob

struct SCIP_Job * SCIP_Job::nextjob

pointer to the next job in the queue

Definition at line 74 of file tpi_openmp.c.

Referenced by checkJobQueue(), freeJobQueue(), and jobQueueAddJob().

◆ jobfunc

SCIP_RETCODE(* SCIP_Job::jobfunc)(void *args)

pointer to the job function

Definition at line 75 of file tpi_openmp.c.

◆ args

void * SCIP_Job::args

pointer to the function arguments

Definition at line 76 of file tpi_openmp.c.

◆ retcode

SCIP_RETCODE SCIP_Job::retcode

return code of the job

Definition at line 77 of file tpi_openmp.c.