Scippy

SCIP

Solving Constraint Integer Programs

cons_countsols.c File Reference

Detailed Description

constraint handler for counting feasible solutions

Author
Stefan Heinz
Michael Winkler

If this constraint handler is activated than it counts or collects all feasible solutions. We refer to How to use SCIP to count/enumerate feasible solutions for more details about using SCIP for counting feasible solutions.

Definition in file cons_countsols.c.

#include <string.h>
#include "scip/cons_and.h"
#include "scip/cons_knapsack.h"
#include "scip/cons_bounddisjunction.h"
#include "scip/cons_logicor.h"
#include "scip/cons_setppc.h"
#include "scip/cons_varbound.h"
#include "scip/cons_countsols.h"
#include "scip/dialog_default.h"

Go to the source code of this file.

Macros

#define CONSHDLR_NAME   "countsols"
 
#define CONSHDLR_DESC   "constraint to count feasible solutions"
 
#define CONSHDLR_ENFOPRIORITY   -9999999
 
#define CONSHDLR_CHECKPRIORITY   -9999999
 
#define CONSHDLR_EAGERFREQ   100
 
#define CONSHDLR_NEEDSCONS   FALSE
 
#define DEFAULT_SPARSETEST   TRUE
 
#define DEFAULT_DISCARDSOLS   TRUE
 
#define DEFAULT_ACTIVE   FALSE
 
#define DEFAULT_COLLECT   FALSE
 
#define DEFAULT_SOLLIMIT   -1LL
 
#define DISP_SOLS_NAME   "sols"
 
#define DISP_SOLS_DESC   "number of detected feasible solutions"
 
#define DISP_SOLS_HEADER   " sols "
 
#define DISP_SOLS_WIDTH   7
 
#define DISP_SOLS_PRIORITY   110000
 
#define DISP_SOLS_POSITION   100000
 
#define DISP_SOLS_STRIPLINE   TRUE
 
#define DISP_CUTS_NAME   "feasST"
 
#define DISP_CUTS_DESC   "number of detected non trivial feasible subtrees"
 
#define DISP_CUTS_HEADER   "feasST"
 
#define DISP_CUTS_WIDTH   6
 
#define DISP_CUTS_PRIORITY   110000
 
#define DISP_CUTS_POSITION   110000
 
#define DISP_CUTS_STRIPLINE   TRUE
 
#define CUTOFF_CONSTRAINT(x)   SCIP_RETCODE x (SCIP* scip, SCIP_SOL* sol, SCIP_CONSHDLRDATA* conshdlrdata)
 
#define consCopyCountsols   NULL
 

Typedefs

typedef SCIP_Longint Int
 

Functions

static void allocInt (Int *value)
 
static void setInt (Int *value, SCIP_Longint newvalue)
 
static void setPowerOfTwo (Int *value, SCIP_Longint exponent)
 
static void freeInt (Int *value)
 
static void addOne (Int *value)
 
static void addInt (Int *value, Int *summand)
 
static void multInt (Int *value, SCIP_Longint factor)
 
static void toString (Int value, char **buffer, int buffersize)
 
static SCIP_Longint getNCountedSols (Int value, SCIP_Bool *valid)
 
static SCIP_Bool varIsUnfixedLocal (SCIP_VAR *var)
 
static SCIP_RETCODE conshdlrdataCreate (SCIP *scip, SCIP_CONSHDLRDATA **conshdlrdata)
 
static void checkSolutionOrig (SCIP *scip, SCIP_SOL *sol, SCIP_CONSHDLRDATA *conshdlrdata)
 
static SCIP_RETCODE checkParameters (SCIP *scip)
 
static CUTOFF_CONSTRAINT (addBinaryCons)
 
static CUTOFF_CONSTRAINT (addIntegerCons)
 
static SCIP_RETCODE collectSolution (SCIP *scip, SCIP_CONSHDLRDATA *conshdlrdata, SCIP_SOL *sol)
 
static SCIP_RETCODE countSparseSol (SCIP *scip, SCIP_SOL *sol, SCIP_Bool feasible, SCIP_CONSHDLRDATA *conshdlrdata, SCIP_RESULT *result)
 
static SCIP_RETCODE checkLogicor (SCIP *scip, SCIP_CONSHDLR *conshdlr, int nconss, SCIP_Bool *satisfied)
 
static SCIP_RETCODE checkKnapsack (SCIP *scip, SCIP_CONSHDLR *conshdlr, int nconss, SCIP_Bool *satisfied)
 
static SCIP_RETCODE checkBounddisjunction (SCIP *scip, SCIP_CONSHDLR *conshdlr, int nconss, SCIP_Bool *satisfied)
 
static SCIP_RETCODE checkVarbound (SCIP *scip, SCIP_CONSHDLR *conshdlr, int nconss, SCIP_Bool *satisfied)
 
static SCIP_RETCODE checkFeasSubtree (SCIP *scip, SCIP_SOL *sol, SCIP_Bool *feasible)
 
static SCIP_RETCODE checkSolution (SCIP *scip, SCIP_SOL *sol, SCIP_CONSHDLRDATA *conshdlrdata, SCIP_RESULT *result)
 
static SCIP_RETCODE includeConshdlrCountsols (SCIP *scip, SCIP_Bool dialogs)
 
static SCIP_DECL_CONSHDLRCOPY (conshdlrCopyCountsols)
 
static SCIP_DECL_CONSFREE (consFreeCountsols)
 
static SCIP_DECL_CONSINIT (consInitCountsols)
 
static SCIP_DECL_CONSEXIT (consExitCountsols)
 
static SCIP_DECL_CONSINITSOL (consInitsolCountsols)
 
static SCIP_DECL_CONSEXITSOL (consExitsolCountsols)
 
static SCIP_DECL_CONSENFOLP (consEnfolpCountsols)
 
static SCIP_DECL_CONSENFOPS (consEnfopsCountsols)
 
static SCIP_DECL_CONSCHECK (consCheckCountsols)
 
static SCIP_DECL_CONSLOCK (consLockCountsols)
 
 SCIP_DECL_DIALOGEXEC (SCIPdialogExecCountPresolve)
 
 SCIP_DECL_DIALOGEXEC (SCIPdialogExecCount)
 
static SCIP_DECL_SORTPTRCOMP (varCompProbindex)
 
static SCIP_RETCODE writeExpandedSolutions (SCIP *scip, FILE *file, SCIP_VAR **allvars, int nallvars, SCIP_VAR **activevars, int nactivevars, SCIP_HASHMAP *hashmap, SCIP_SPARSESOL **sols, int nsols)
 
 SCIP_DECL_DIALOGEXEC (SCIPdialogExecWriteAllsolutions)
 
static SCIP_RETCODE createCountDialog (SCIP *scip)
 
static SCIP_DECL_DISPOUTPUT (dispOutputSols)
 
static SCIP_DECL_DISPOUTPUT (dispOutputFeasSubtrees)
 
SCIP_RETCODE SCIPincludeConshdlrCountsols (SCIP *scip)
 
SCIP_RETCODE SCIPcount (SCIP *scip)
 
SCIP_Longint SCIPgetNCountedSols (SCIP *scip, SCIP_Bool *valid)
 
void SCIPgetNCountedSolsstr (SCIP *scip, char **buffer, int buffersize, int *requiredsize)
 
SCIP_Longint SCIPgetNCountedFeasSubtrees (SCIP *scip)
 
void SCIPgetCountedSparseSols (SCIP *scip, SCIP_VAR ***vars, int *nvars, SCIP_SPARSESOL ***sols, int *nsols)
 
SCIP_RETCODE SCIPsetParamsCountsols (SCIP *scip)
 

Macro Definition Documentation

#define CONSHDLR_DESC   "constraint to count feasible solutions"

Definition at line 53 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define CONSHDLR_ENFOPRIORITY   -9999999

priority of the constraint handler for constraint enforcing

Definition at line 54 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define CONSHDLR_CHECKPRIORITY   -9999999

priority of the constraint handler for checking feasibility

Definition at line 55 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define CONSHDLR_EAGERFREQ   100

frequency for using all instead of only the useful constraints in separation, propagation and enforcement, -1 for no eager evaluations, 0 for first only

Definition at line 56 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define CONSHDLR_NEEDSCONS   FALSE

should the constraint handler be skipped, if no constraints are available?

Definition at line 58 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DEFAULT_SPARSETEST   TRUE

sparse test on or off

Definition at line 61 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DEFAULT_DISCARDSOLS   TRUE

is it allowed to discard solutions

Definition at line 62 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DEFAULT_ACTIVE   FALSE

is the constraint handler active

Definition at line 63 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DEFAULT_COLLECT   FALSE

should the solutions be collected

Definition at line 64 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DEFAULT_SOLLIMIT   -1LL

counting stops, if the given number of solutions were found (-1: no limit)

Definition at line 65 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DISP_SOLS_NAME   "sols"

Definition at line 68 of file cons_countsols.c.

Referenced by includeConshdlrCountsols(), and SCIP_DECL_DISPOUTPUT().

#define DISP_SOLS_DESC   "number of detected feasible solutions"

Definition at line 69 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DISP_SOLS_HEADER   " sols "

Definition at line 70 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DISP_SOLS_WIDTH   7

Definition at line 71 of file cons_countsols.c.

Referenced by includeConshdlrCountsols(), and SCIP_DECL_DISPOUTPUT().

#define DISP_SOLS_PRIORITY   110000

Definition at line 72 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DISP_SOLS_POSITION   100000

Definition at line 73 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DISP_SOLS_STRIPLINE   TRUE

Definition at line 74 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DISP_CUTS_NAME   "feasST"

Definition at line 76 of file cons_countsols.c.

Referenced by includeConshdlrCountsols(), and SCIP_DECL_DISPOUTPUT().

#define DISP_CUTS_DESC   "number of detected non trivial feasible subtrees"

Definition at line 77 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DISP_CUTS_HEADER   "feasST"

Definition at line 78 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DISP_CUTS_WIDTH   6

Definition at line 79 of file cons_countsols.c.

Referenced by includeConshdlrCountsols(), and SCIP_DECL_DISPOUTPUT().

#define DISP_CUTS_PRIORITY   110000

Definition at line 80 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DISP_CUTS_POSITION   110000

Definition at line 81 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define DISP_CUTS_STRIPLINE   TRUE

Definition at line 82 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

#define CUTOFF_CONSTRAINT (   x)    SCIP_RETCODE x (SCIP* scip, SCIP_SOL* sol, SCIP_CONSHDLRDATA* conshdlrdata)

creates and adds a constraint which cuts off the solution from the feasibility region

input:

  • scip : SCIP main data structure
  • sol : solution to cut off
  • conshdlrdata : constraint handler data

Definition at line 92 of file cons_countsols.c.

#define consCopyCountsols   NULL

Definition at line 1366 of file cons_countsols.c.

Referenced by includeConshdlrCountsols().

Typedef Documentation

typedef SCIP_Longint Int

Definition at line 48 of file cons_countsols.c.

Function Documentation

static void allocInt ( Int value)
static

allocates memory for the value pointer

Parameters
valuepointer to the value to allocate memory

Definition at line 133 of file cons_countsols.c.

Referenced by conshdlrdataCreate(), and countSparseSol().

static void setInt ( Int value,
SCIP_Longint  newvalue 
)
static

sets the value pointer to the new value

Parameters
valuepointer to the value to initialize
newvaluenew value

Definition at line 145 of file cons_countsols.c.

Referenced by countSparseSol(), and SCIP_DECL_CONSINIT().

static void setPowerOfTwo ( Int value,
SCIP_Longint  exponent 
)
static

sets a power of 2 to the given value

Parameters
valuepointer to the value to increase
exponentexponent for the base 2

Definition at line 162 of file cons_countsols.c.

Referenced by countSparseSol().

static void freeInt ( Int value)
static

free memory

Parameters
valuepointer to the value to free

Definition at line 180 of file cons_countsols.c.

Referenced by countSparseSol(), and SCIP_DECL_CONSFREE().

static void addOne ( Int value)
static

adds one to the given value

Parameters
valuepointer to the value to increase

Definition at line 192 of file cons_countsols.c.

Referenced by checkSolution(), and countSparseSol().

static void addInt ( Int value,
Int summand 
)
static

adds the summand to the given value

Parameters
valuepointer to the value to increase
summandsummand to add on

Definition at line 206 of file cons_countsols.c.

Referenced by countSparseSol().

static void multInt ( Int value,
SCIP_Longint  factor 
)
static

multiplies the factor by the given value

Parameters
valuepointer to the value to increase
factorfactor to multiply with

Definition at line 221 of file cons_countsols.c.

Referenced by countSparseSol().

static void toString ( Int  value,
char **  buffer,
int  buffersize 
)
static

method for creating a string out of an Int which is a mpz_t or SCIP_Longint

Parameters
valuenumber
bufferpointer to buffer for storing the string
buffersizelength of the buffer

Definition at line 238 of file cons_countsols.c.

References SCIPsnprintf().

Referenced by SCIPgetNCountedSolsstr().

static SCIP_Longint getNCountedSols ( Int  value,
SCIP_Bool valid 
)
static

method for creating a SCIP_Longing out of an Int

Parameters
valuenumber to convert
validpointer to store if the return value is valid

Definition at line 254 of file cons_countsols.c.

References FALSE, and TRUE.

Referenced by checkSolution(), and SCIPgetNCountedSols().

static SCIP_Bool varIsUnfixedLocal ( SCIP_VAR var)
static

returns whether a given integer variable is unfixed in the local domain

Parameters
varinteger variable

Definition at line 279 of file cons_countsols.c.

References NULL, SCIP_VARTYPE_CONTINUOUS, SCIPvarGetLbLocal(), SCIPvarGetType(), and SCIPvarGetUbLocal().

Referenced by checkKnapsack(), and checkLogicor().

static SCIP_RETCODE conshdlrdataCreate ( SCIP scip,
SCIP_CONSHDLRDATA **  conshdlrdata 
)
static

creates the constraint handler data

Parameters
scipSCIP data structure
conshdlrdatapointer to store constraint handler data

Definition at line 293 of file cons_countsols.c.

References allocInt(), FALSE, NULL, SCIP_CALL, SCIP_OKAY, and SCIPallocMemory.

Referenced by includeConshdlrCountsols().

static void checkSolutionOrig ( SCIP scip,
SCIP_SOL sol,
SCIP_CONSHDLRDATA conshdlrdata 
)
static

check solution in original space

Parameters
scipSCIP data structure
solsolution to add
conshdlrdataconstraint handler data

Definition at line 325 of file cons_countsols.c.

References FALSE, SCIP_Bool, SCIP_OKAY, SCIPABORT, SCIPcheckSolOrig(), SCIPdebugMessage, SCIPprintError(), and TRUE.

Referenced by checkSolution().

static SCIP_RETCODE checkParameters ( SCIP scip)
static

check if the current parameter setting is correct for a save counting process

Parameters
scipSCIP data structure

Definition at line 361 of file cons_countsols.c.

References FALSE, NULL, SCIP_Bool, SCIP_CALL, SCIP_OKAY, SCIP_VERBLEVEL_FULL, SCIPgetHeurs(), SCIPgetIntParam(), SCIPgetNHeurs(), SCIPheurGetFreq(), SCIPisParamFixed(), SCIPsetIntParam(), SCIPunfixParam(), SCIPverbMessage(), SCIPwarningMessage(), and TRUE.

Referenced by SCIPcount().

static CUTOFF_CONSTRAINT ( addBinaryCons  )
static

creates and adds a constraints which cuts off the current solution from the feasibility region in the case there are only binary variables

Definition at line 416 of file cons_countsols.c.

References FALSE, NULL, SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIPaddCons(), SCIPallocBufferArray, SCIPcreateConsSetcover(), SCIPfreeBufferArray, SCIPgetNegatedVar(), SCIPgetSolVal(), SCIPisFeasIntegral(), SCIPreleaseCons(), SCIPvarIsBinary(), and TRUE.

static CUTOFF_CONSTRAINT ( addIntegerCons  )
static

creates and adds a bound disjunction constraints which cuts off the current solution from the feasibility region; if only binary variables are involved, then a set covering constraint is created which is a special case of a bound disjunction constraint

Definition at line 476 of file cons_countsols.c.

References FALSE, NULL, SCIP_BOUNDTYPE_LOWER, SCIP_BOUNDTYPE_UPPER, SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIP_VARTYPE_CONTINUOUS, SCIPaddCons(), SCIPallocBufferArray, SCIPcreateConsBounddisjunction(), SCIPcreateConsSetcover(), SCIPfreeBufferArray, SCIPgetNegatedVar(), SCIPgetSolVal(), SCIPisFeasEQ(), SCIPisFeasIntegral(), SCIPreleaseCons(), SCIPvarGetLbLocal(), SCIPvarGetType(), SCIPvarGetUbLocal(), SCIPvarIsBinary(), and TRUE.

static SCIP_RETCODE collectSolution ( SCIP scip,
SCIP_CONSHDLRDATA conshdlrdata,
SCIP_SOL sol 
)
static

collect given solution or local domains as sparse solution

Parameters
scipSCIP data structure
conshdlrdataconstraint handler data
solsolution, or NULL if local domains

Definition at line 609 of file cons_countsols.c.

References FALSE, NULL, SCIP_CALL, SCIP_Longint, SCIP_OKAY, SCIPallocMemoryArray, SCIPdebugMessage, SCIPgetSolVal(), SCIPreallocMemoryArray, SCIPsparseSolCreate(), SCIPsparseSolGetLbs(), SCIPsparseSolGetUbs(), SCIPvarGetLbLocal(), SCIPvarGetName(), SCIPvarGetUbLocal(), and SCIP_SparseSol::vars.

Referenced by checkSolution(), and countSparseSol().

static SCIP_RETCODE countSparseSol ( SCIP scip,
SCIP_SOL sol,
SCIP_Bool  feasible,
SCIP_CONSHDLRDATA conshdlrdata,
SCIP_RESULT result 
)
static

counts the number of solutions represented by sol

Note
aggregations and multi aggregations: we do not have to care about these things since we count solution from the transformed problem and therefore, SCIP does it for us
Parameters
scipSCIP data structure
solsolution
feasibleis solution feasible?
conshdlrdataconstraint handler data
resultpointer to store the result of the checking process

Definition at line 683 of file cons_countsols.c.

References addInt(), addOne(), allocInt(), collectSolution(), freeInt(), multInt(), NULL, SCIP_CALL, SCIP_CUTOFF, SCIP_INFEASIBLE, SCIP_Longint, SCIP_OKAY, SCIP_Real, SCIP_VARTYPE_CONTINUOUS, SCIPdebugMessage, SCIPgetNBinVars(), SCIPgetNPseudoBranchCands(), SCIPgetNVars(), SCIPgetPseudoBranchCands(), SCIPisFeasIntegral(), SCIPisFeasLT(), SCIPvarGetLbLocal(), SCIPvarGetName(), SCIPvarGetOrigvarSum(), SCIPvarGetType(), SCIPvarGetUbLocal(), setInt(), and setPowerOfTwo().

Referenced by checkSolution().

static SCIP_RETCODE checkLogicor ( SCIP scip,
SCIP_CONSHDLR conshdlr,
int  nconss,
SCIP_Bool satisfied 
)
static

checks if the new solution is feasible for the logicor constraints

Note
the logicor constraints are not fully propagated; therefore, we have to check them by hand if they are satisfied or not; if a constraint is satisfied we delete it locally from the branch and bound tree.
Parameters
scipSCIP data structure
conshdlrconstraint handler
nconssnumber of enabled constraints
satisfiedpointer to store if the logicor constraints a satisfied

Definition at line 802 of file cons_countsols.c.

References FALSE, NULL, SCIP_Bool, SCIP_CALL, SCIP_OKAY, SCIPconsGetName(), SCIPconshdlrGetConss(), SCIPconshdlrGetNActiveConss(), SCIPconshdlrGetName(), SCIPconshdlrGetNEnabledConss(), SCIPconsIsEnabled(), SCIPdebugMessage, SCIPdebugPrintCons, SCIPdelConsLocal(), SCIPgetNVarsLogicor(), SCIPgetVarsLogicor(), SCIPvarGetLbLocal(), SCIPvarIsBinary(), TRUE, and varIsUnfixedLocal().

Referenced by checkFeasSubtree().

static SCIP_RETCODE checkKnapsack ( SCIP scip,
SCIP_CONSHDLR conshdlr,
int  nconss,
SCIP_Bool satisfied 
)
static

checks if the new solution is feasible for the knapsack constraints

Note
the knapsack constraints are not fully propagated; therefore, we have to check them by hand if they are satisfied or not; if a constraint is satisfied we delete it locally from the branch and bound tree.
Parameters
scipSCIP data structure
conshdlrconstraint handler
nconssnumber of enabled constraints
satisfiedpointer to store if the logicor constraints a satisfied

Definition at line 875 of file cons_countsols.c.

References FALSE, NULL, SCIP_CALL, SCIP_Longint, SCIP_OKAY, SCIP_Real, SCIPconsGetName(), SCIPconshdlrGetConss(), SCIPconshdlrGetNActiveConss(), SCIPconshdlrGetName(), SCIPconshdlrGetNEnabledConss(), SCIPconsIsEnabled(), SCIPdebug, SCIPdebugMessage, SCIPdebugPrintCons, SCIPdelConsLocal(), SCIPgetCapacityKnapsack(), SCIPgetNVarsKnapsack(), SCIPgetVarsKnapsack(), SCIPgetWeightsKnapsack(), SCIPisFeasLT(), SCIPprintVar(), SCIPvarGetLbLocal(), SCIPvarGetUbLocal(), SCIPvarIsIntegral(), TRUE, and varIsUnfixedLocal().

Referenced by checkFeasSubtree().

static SCIP_RETCODE checkBounddisjunction ( SCIP scip,
SCIP_CONSHDLR conshdlr,
int  nconss,
SCIP_Bool satisfied 
)
static

checks if the new solution is feasible for the bounddisjunction constraints

Note
the bounddisjunction constraints are not fully propagated; therefore, we have to check them by hand if they are satisfied or not; if a constraint is satisfied we delete it locally from the branch and bound tree
Parameters
scipSCIP data structure
conshdlrconstraint handler
nconssnumber of enabled constraints
satisfiedpointer to store if the logicor constraints a satisfied

Definition at line 970 of file cons_countsols.c.

References FALSE, NULL, SCIP_Bool, SCIP_BOUNDTYPE_LOWER, SCIP_BOUNDTYPE_UPPER, SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIPconsGetName(), SCIPconshdlrGetConss(), SCIPconshdlrGetNActiveConss(), SCIPconshdlrGetName(), SCIPconshdlrGetNEnabledConss(), SCIPconsIsEnabled(), SCIPdebug, SCIPdebugMessage, SCIPdebugPrintCons, SCIPdelConsLocal(), SCIPgetBoundsBounddisjunction(), SCIPgetBoundtypesBounddisjunction(), SCIPgetNVarsBounddisjunction(), SCIPgetVarsBounddisjunction(), SCIPisFeasGE(), SCIPisFeasLE(), SCIPprintVar(), SCIPvarGetLbLocal(), SCIPvarGetUbLocal(), and TRUE.

Referenced by checkFeasSubtree().

static SCIP_RETCODE checkVarbound ( SCIP scip,
SCIP_CONSHDLR conshdlr,
int  nconss,
SCIP_Bool satisfied 
)
static

checks if the new solution is feasible for the varbound constraints

Note
the varbound constraints are not fully propagated; therefore, we have to check them by hand if they are satisfied or not; if a constraint is satisfied we delete it locally from the branch and bound tree.
Parameters
scipSCIP data structure
conshdlrconstraint handler
nconssnumber of enabled constraints
satisfiedpointer to store if the logicor constraints a satisfied

Definition at line 1048 of file cons_countsols.c.

References FALSE, NULL, SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIP_VARTYPE_CONTINUOUS, SCIPconsGetName(), SCIPconshdlrGetConss(), SCIPconshdlrGetNActiveConss(), SCIPconshdlrGetName(), SCIPconshdlrGetNEnabledConss(), SCIPconsIsEnabled(), SCIPdebugMessage, SCIPdebugPrintCons, SCIPdelConsLocal(), SCIPgetLhsVarbound(), SCIPgetRhsVarbound(), SCIPgetVarVarbound(), SCIPgetVbdcoefVarbound(), SCIPgetVbdvarVarbound(), SCIPisGE(), SCIPisGT(), SCIPvarGetLbLocal(), SCIPvarGetName(), SCIPvarGetType(), SCIPvarGetUbLocal(), and TRUE.

Referenced by checkFeasSubtree().

static SCIP_RETCODE checkFeasSubtree ( SCIP scip,
SCIP_SOL sol,
SCIP_Bool feasible 
)
static

check if the current node initializes a non trivial unrestricted subtree

Parameters
scipSCIP main data structure
solsolution to check
feasiblepointer to store the result of the check

Definition at line 1124 of file cons_countsols.c.

References checkBounddisjunction(), checkKnapsack(), checkLogicor(), checkVarbound(), CONSHDLR_NAME, FALSE, NULL, SCIP_Bool, SCIP_CALL, SCIP_OKAY, SCIPconshdlrGetConss(), SCIPconshdlrGetName(), SCIPconshdlrGetNEnabledConss(), SCIPdebugMessage, SCIPdebugPrintCons, SCIPgetConshdlrs(), SCIPgetNConshdlrs(), SCIPgetNPseudoBranchCands(), and TRUE.

Referenced by checkSolution().

static SCIP_RETCODE checkSolution ( SCIP scip,
SCIP_SOL sol,
SCIP_CONSHDLRDATA conshdlrdata,
SCIP_RESULT result 
)
static
static SCIP_DECL_CONSHDLRCOPY ( conshdlrCopyCountsols  )
static

copy method for constraint handler plugins (called when SCIP copies plugins)

Definition at line 1341 of file cons_countsols.c.

References CONSHDLR_NAME, FALSE, includeConshdlrCountsols(), NULL, SCIP_CALL, SCIP_OKAY, SCIPconshdlrGetData(), SCIPconshdlrGetName(), and TRUE.

static SCIP_DECL_CONSFREE ( consFreeCountsols  )
static

destructor of constraint handler to free constraint handler data (called when SCIP is exiting)

Definition at line 1370 of file cons_countsols.c.

References CONSHDLR_NAME, freeInt(), NULL, SCIP_OKAY, SCIPconshdlrGetData(), SCIPconshdlrGetName(), SCIPconshdlrSetData(), and SCIPfreeMemory.

static SCIP_DECL_CONSINIT ( consInitCountsols  )
static
static SCIP_DECL_CONSEXIT ( consExitCountsols  )
static

deinitialization method of constraint handler (called before transformed problem is freed)

Definition at line 1466 of file cons_countsols.c.

References CONSHDLR_NAME, FALSE, NULL, SCIP_CALL, SCIP_OKAY, SCIPaddVarLocks(), SCIPconshdlrGetData(), SCIPconshdlrGetName(), SCIPfreeMemoryArrayNull, SCIPhashmapFree(), SCIPreleaseVar(), SCIPsparseSolFree(), and SCIPvarGetName().

static SCIP_DECL_CONSINITSOL ( consInitsolCountsols  )
static

solving process initialization method of constraint handler (called when branch and bound process is about to begin)

This method is called when the presolving was finished and the branch and bound process is about to begin. The constraint handler may use this call to initialize its branch and bound specific data.

Definition at line 1541 of file cons_countsols.c.

References CONSHDLR_NAME, NULL, SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIP_VARTYPE_CONTINUOUS, SCIPblkmem(), SCIPcaptureVar(), SCIPconshdlrGetData(), SCIPconshdlrGetName(), SCIPduplicateMemoryArray, SCIPgetNBinVars(), SCIPgetNContVars(), SCIPgetNVars(), SCIPgetVars(), SCIPhashmapCreate(), SCIPhashmapInsert(), SCIPvarGetOrigvarSum(), SCIPvarGetProbindex(), and SCIPvarGetType().

static SCIP_DECL_CONSEXITSOL ( consExitsolCountsols  )
static

solving process deinitialization method of constraint handler (called before branch and bound process data is freed)

Definition at line 1626 of file cons_countsols.c.

References CONSHDLR_NAME, NULL, SCIP_INVALIDCALL, SCIP_OKAY, SCIPABORT, SCIPconshdlrGetData(), SCIPconshdlrGetName(), and SCIPerrorMessage.

static SCIP_DECL_CONSENFOLP ( consEnfolpCountsols  )
static

constraint enforcing method of constraint handler for LP solutions

Definition at line 1650 of file cons_countsols.c.

References checkSolution(), NULL, SCIP_CALL, SCIP_CUTOFF, SCIP_FEASIBLE, SCIP_INFEASIBLE, SCIP_OKAY, SCIPconshdlrGetData(), SCIPcreateLPSol(), SCIPdebugMessage, and SCIPfreeSol().

static SCIP_DECL_CONSENFOPS ( consEnfopsCountsols  )
static

constraint enforcing method of constraint handler for pseudo solutions

Definition at line 1688 of file cons_countsols.c.

References checkSolution(), NULL, SCIP_CALL, SCIP_CUTOFF, SCIP_FEASIBLE, SCIP_INFEASIBLE, SCIP_OKAY, SCIPconshdlrGetData(), SCIPcreatePseudoSol(), SCIPdebugMessage, and SCIPfreeSol().

static SCIP_DECL_CONSCHECK ( consCheckCountsols  )
static

feasibility check method of constraint handler for integral solutions

Definition at line 1727 of file cons_countsols.c.

References NULL, SCIP_FEASIBLE, SCIP_INFEASIBLE, SCIP_OKAY, SCIPconshdlrGetData(), SCIPdebugMessage, SCIPwarningMessage(), and TRUE.

static SCIP_DECL_CONSLOCK ( consLockCountsols  )
static

variable rounding lock method of constraint handler

Definition at line 1757 of file cons_countsols.c.

References SCIP_OKAY.

static SCIP_DECL_SORTPTRCOMP ( varCompProbindex  )
static

comparison method for sorting variables by non-decreasing w.r.t. problem index

Definition at line 2006 of file cons_countsols.c.

References NULL, and SCIPvarGetProbindex().

static SCIP_RETCODE writeExpandedSolutions ( SCIP scip,
FILE *  file,
SCIP_VAR **  allvars,
int  nallvars,
SCIP_VAR **  activevars,
int  nactivevars,
SCIP_HASHMAP hashmap,
SCIP_SPARSESOL **  sols,
int  nsols 
)
static

expands the sparse solutions and writes them to the file

Parameters
scipSCIP data structure
filefile handler
allvarsSCIP variables
nallvarsnumber of all variables
activevarsSCIP variables
nactivevarsnumber of active variables
hashmaphashmap from active solution variable to the position in the active variables array
solssparse solutions to expands and write
nsolsnumber of sparse solutions

Definition at line 2030 of file cons_countsols.c.

References NULL, scalars, SCIP_CALL, SCIP_Longint, SCIP_OKAY, SCIP_Real, SCIPallocBufferArray, SCIPfreeBufferArray, SCIPgetProbvarLinearSum(), SCIPhashmapExists(), SCIPhashmapGetImage(), SCIPinfoMessage(), SCIPisIntegral(), SCIPretransformObj(), SCIPsparseSolGetFirstSol(), SCIPsparseSolGetNextSol(), SCIPsparseSolGetNVars(), SCIPvarGetObj(), and TRUE.

Referenced by SCIP_DECL_DIALOGEXEC().

static SCIP_RETCODE createCountDialog ( SCIP scip)
static

create the interactive shell dialogs for the counting process

Parameters
scipSCIP data structure

Definition at line 2345 of file cons_countsols.c.

References FALSE, NULL, SCIP_CALL, SCIP_OKAY, SCIP_PLUGINNOTFOUND, SCIPaddDialogEntry(), SCIPdialogFindEntry(), SCIPdialogHasEntry(), SCIPerrorMessage, SCIPgetRootDialog(), SCIPincludeDialog(), SCIPincludeDialogDefault(), and SCIPreleaseDialog().

Referenced by includeConshdlrCountsols().

static SCIP_DECL_DISPOUTPUT ( dispOutputSols  )
static
static SCIP_DECL_DISPOUTPUT ( dispOutputFeasSubtrees  )
static
SCIP_RETCODE SCIPincludeConshdlrCountsols ( SCIP scip)

creates the handler for countsols constraints and includes it in SCIP

Parameters
scipSCIP data structure

Definition at line 2559 of file cons_countsols.c.

References includeConshdlrCountsols(), SCIP_CALL, SCIP_OKAY, and TRUE.

Referenced by SCIPincludeDefaultPlugins().

SCIP_RETCODE SCIPcount ( SCIP scip)

execute counting

Parameters
scipSCIP data structure

Definition at line 2571 of file cons_countsols.c.

References checkParameters(), CONSHDLR_NAME, FALSE, SCIP_Bool, SCIP_CALL, SCIP_OKAY, SCIPgetBoolParam(), SCIPsetBoolParam(), SCIPsolve(), and TRUE.

Referenced by SCIP_DECL_DIALOGEXEC().

SCIP_Longint SCIPgetNCountedSols ( SCIP scip,
SCIP_Bool valid 
)

returns number of feasible solutions found as SCIP_Longint; if the number does not fit into a SCIP_Longint the valid flag is set to FALSE

Parameters
scipSCIP data structure
validpointer to store if the return value is valid

Definition at line 2603 of file cons_countsols.c.

References CONSHDLR_NAME, getNCountedSols(), NULL, SCIPconshdlrGetData(), and SCIPfindConshdlr().

Referenced by SCIP_DECL_DIALOGEXEC(), and SCIP_DECL_DISPOUTPUT().

void SCIPgetNCountedSolsstr ( SCIP scip,
char **  buffer,
int  buffersize,
int *  requiredsize 
)

puts the number of counted solutions in the given char* buffer

Parameters
scipSCIP data structure
bufferbuffer to store the number for counted solutions
buffersizebuffer size
requiredsizepointer to store the required size

Definition at line 2623 of file cons_countsols.c.

References CONSHDLR_NAME, NULL, pow(), SCIPconshdlrGetData(), SCIPfindConshdlr(), and toString().

Referenced by SCIP_DECL_DIALOGEXEC().

SCIP_Longint SCIPgetNCountedFeasSubtrees ( SCIP scip)

returns number of counted non trivial feasible subtrees

Parameters
scipSCIP data structure

Definition at line 2661 of file cons_countsols.c.

References CONSHDLR_NAME, NULL, SCIPconshdlrGetData(), and SCIPfindConshdlr().

Referenced by SCIP_DECL_DIALOGEXEC(), and SCIP_DECL_DISPOUTPUT().

void SCIPgetCountedSparseSols ( SCIP scip,
SCIP_VAR ***  vars,
int *  nvars,
SCIP_SPARSESOL ***  sols,
int *  nsols 
)

Method to get the sparse solution.

Note
You get the pointer to the sparse solutions stored in the constraint handler (not a copy).
The sparse solutions are stored w.r.t. the active variables. This are the variables which got not removed during presolving. For none active variables the value has to be computed depending on their aggregation type. See for more details about that Collect all feasible solution.
Parameters
scipSCIP data structure
varspointer to active variable array defining to variable order
nvarsnumber of active variables
solspointer to the solutions
nsolspointer to number of solutions

Definition at line 2689 of file cons_countsols.c.

References CONSHDLR_NAME, NULL, SCIPconshdlrGetData(), and SCIPfindConshdlr().

SCIP_RETCODE SCIPsetParamsCountsols ( SCIP scip)

setting SCIP parameters for such that a valid counting process is possible

Parameters
scipSCIP data structure

Definition at line 2716 of file cons_countsols.c.

References SCIP_CALL, SCIP_OKAY, SCIP_PARAMEMPHASIS_COUNTER, SCIPsetEmphasis(), and TRUE.