Scippy

SCIP

Solving Constraint Integer Programs

SCORECONTAINER Struct Reference

Detailed Description

container struct to keep the calculated score for each variable

Definition at line 1837 of file branch_lookahead.c.

Data Fields

SCIP_Realscores
 
SCIP_Realdowngains
 
SCIP_Realupgains
 
CANDIDATE ** bestsortedcands
 
int nbestsortedcands
 
SCIP_Real scoresum
 
int nsetscores
 

Field Documentation

◆ scores

SCIP_Real* SCORECONTAINER::scores

the scores for each problem variable

Definition at line 1839 of file branch_lookahead.c.

Referenced by ensureScoresPresent(), filterCandidates(), and sortFirstCandidatesByScore().

◆ downgains

SCIP_Real* SCORECONTAINER::downgains

the downgains for each problem variable

Definition at line 1840 of file branch_lookahead.c.

Referenced by filterCandidates().

◆ upgains

SCIP_Real* SCORECONTAINER::upgains

the upgains for each problem variable

Definition at line 1841 of file branch_lookahead.c.

Referenced by filterCandidates().

◆ bestsortedcands

CANDIDATE** SCORECONTAINER::bestsortedcands

array containing the best sorted variable indices w.r.t. their score

Definition at line 1842 of file branch_lookahead.c.

◆ nbestsortedcands

int SCORECONTAINER::nbestsortedcands

number of elements in bestsortedcands

Definition at line 1843 of file branch_lookahead.c.

◆ scoresum

SCIP_Real SCORECONTAINER::scoresum

sum of set scores

Definition at line 1844 of file branch_lookahead.c.

Referenced by ensureScoresPresent().

◆ nsetscores

int SCORECONTAINER::nsetscores

number of set scores

Definition at line 1845 of file branch_lookahead.c.

Referenced by ensureScoresPresent().