
Interpreter for the FlatZinc language. More...
Namespaces | |
| namespace | AST |
| Abstract syntax trees for the FlatZinc interpreter. | |
| namespace | Internal |
Classes | |
| class | Alias |
| Alias for a variable specification More... | |
| class | BlackBoxAccess |
| Access to the model-local blackbox context while posting and searching. More... | |
| class | BlackBoxBackend |
| Backend for a deterministic FlatZinc blackbox function. More... | |
| struct | BlackBoxCall |
| Inputs and pre-sized output buffers for one backend call. More... | |
| class | BlackBoxContextHandle |
| Model-local context shared by blackbox propagators and search support. More... | |
| class | BlackBoxExec |
| Persistent-process backend shared by equal executable configurations. More... | |
| class | BlackBoxLibrary |
| Dynamic-library backend owned by one blackbox constraint. More... | |
| class | BlackBoxProcessSession |
| Platform process session used by the executable blackbox backend. More... | |
| class | BoolVarSpec |
| Specification for Boolean variables. More... | |
| class | BranchInformation |
| class | Complete |
| class | ConExpr |
| Abstract representation of a constraint. More... | |
| class | Error |
| Exception class for FlatZinc errors More... | |
| class | FlatZincOptions |
| Options for running FlatZinc models More... | |
| class | FlatZincSpace |
| A space that can be initialized with a FlatZinc model. More... | |
| class | FloatVarSpec |
| Specification for floating point variables. More... | |
| class | IntBoolBrancher |
| Brancher for integer and Boolean views. More... | |
| class | IntBoolBrancherBase |
| Base-class for brancher for integer and Boolean views. More... | |
| class | IntBoolVarBranch |
| Which integer or Boolean variable to select for branching. More... | |
| class | IntVarSpec |
| Specification for integer variables. More... | |
| class | LastVal |
| class | MeritMaxAction |
| Select by maximal Action. More... | |
| class | MeritMaxActionSize |
| Select by maximal Action over size. More... | |
| class | MeritMaxAFC |
| Select by maximal AFC. More... | |
| class | MeritMaxAFCSize |
| Select by maximal AFC over size. More... | |
| class | MeritMaxCHB |
| Select by maximal CHB. More... | |
| class | MeritMaxCHBSize |
| Select by maximal CHB over size. More... | |
| struct | Option |
| Optional value. More... | |
| class | OutputOrder |
| Strict weak ordering for output items. More... | |
| class | ParserState |
| State of the FlatZinc parser More... | |
| class | PosIntChoice |
| Choice storing position and value More... | |
| class | Printer |
| Output support class for FlatZinc interpreter. More... | |
| class | Registry |
| Map from constraint identifier to constraint posting functions. More... | |
| class | SetBoolLastVal |
| class | SetFloatLastVal |
| class | SetIntLastVal |
| class | SetIntSetLastVal |
| class | SetVarSpec |
| Specification for set variables. More... | |
| class | SymbolEntry |
| Entries in the symbol table. More... | |
| class | SymbolTable |
| Symbol table mapping identifiers (strings) to values. More... | |
| class | VarSpec |
| Base class for variable specifications. More... | |
Typedefs | |
| typedef LastVal< IntView, SetIntLastVal > | LastValInt |
| typedef LastVal< BoolView, SetBoolLastVal > | LastValBool |
| typedef LastVal< Float::FloatView, SetFloatLastVal > | LastValFloat |
| typedef LastVal< Set::SetView, SetIntSetLastVal > | LastValSet |
| typedef std::pair< std::string, Option< std::vector< int > * > > | intvartype |
| typedef std::pair< std::string, VarSpec * > | varspec |
Enumerations | |
| enum | SymbolType { ST_INTVAR , ST_BOOLVAR , ST_FLOATVAR , ST_SETVAR , ST_INTVARARRAY , ST_BOOLVARARRAY , ST_SETVARARRAY , ST_FLOATVARARRAY , ST_INTVALARRAY , ST_BOOLVALARRAY , ST_SETVALARRAY , ST_FLOATVALARRAY , ST_INT , ST_BOOL , ST_SET , ST_FLOAT } |
| Types of symbols. More... | |
Functions | |
| GECODE_FLATZINC_EXPORT FlatZincSpace * | parse (const std::string &fileName, Printer &p, std::ostream &err=std::cerr, FlatZincSpace *fzs=nullptr, Rnd &rnd=defrnd) |
| Parse FlatZinc file fileName into fzs and return it. | |
| GECODE_FLATZINC_EXPORT FlatZincSpace * | parse (std::istream &is, Printer &p, std::ostream &err=std::cerr, FlatZincSpace *fzs=nullptr, Rnd &rnd=defrnd) |
| Parse FlatZinc from is into fzs and return it. | |
| GECODE_FLATZINC_EXPORT std::string | encode_blackbox_request (const BlackBoxCall &call) |
| Encode one request for the executable backend's line protocol. | |
| GECODE_FLATZINC_EXPORT void | decode_blackbox_response (const std::string &response, BlackBoxCall &call) |
| Decode and validate one response from the executable backend. | |
| BlackBoxProcessSession * | create_blackbox_process (const std::string &program, const std::vector< std::string > &args) |
| Create the process implementation selected for the target platform. | |
| void | blackbox (Home home, BlackBoxContextHandle &context, const IntVarArgs &int_in, const IntVarArgs &int_out, const FloatVarArgs &float_in, const FloatVarArgs &float_out, const std::string &mode, const std::string &target, const std::vector< std::string > &args) |
| void | blackbox_bounds (Home home, BlackBoxContextHandle &context, const IntVarArgs &ivar, const FloatVarArgs &fvar, const std::string &mode, const std::string &target, const std::vector< std::string > &args, const std::vector< int > &reason) |
| IntBoolVarBranch | INTBOOL_VAR_AFC_MAX (double d=1.0) |
| Variable selection for both integer and Boolean variables. | |
| IntBoolVarBranch | INTBOOL_VAR_AFC_MAX (IntAFC ia, BoolAFC ba) |
| Select variable with largest accumulated failure count. | |
| IntBoolVarBranch | INTBOOL_VAR_ACTION_MAX (double d=1.0) |
| Select variable with highest action. | |
| IntBoolVarBranch | INTBOOL_VAR_ACTION_MAX (IntAction ia, BoolAction ba) |
| Select variable with highest action. | |
| IntBoolVarBranch | INTBOOL_VAR_CHB_MAX (double d=1.0) |
| Select variable with largest CHB Q-score. | |
| IntBoolVarBranch | INTBOOL_VAR_CHB_MAX (IntCHB ic, BoolCHB bc) |
| Select variable with largest CHB Q-score. | |
| IntBoolVarBranch | INTBOOL_VAR_AFC_SIZE_MAX (double d=1.0) |
| Select variable with largest accumulated failure count divided by domain size. | |
| IntBoolVarBranch | INTBOOL_VAR_AFC_SIZE_MAX (IntAFC ia, BoolAFC ba) |
| Select variable with largest accumulated failure count divided by domain size. | |
| IntBoolVarBranch | INTBOOL_VAR_ACTION_SIZE_MAX (double d=1.0) |
| Select variable with largest action divided by domain size. | |
| IntBoolVarBranch | INTBOOL_VAR_ACTION_SIZE_MAX (IntAction ia, BoolAction ba) |
| Select variable with largest action divided by domain size. | |
| IntBoolVarBranch | INTBOOL_VAR_CHB_SIZE_MAX (double d=1.0) |
| Select variable with largest CHB Q-score divided by domain size. | |
| IntBoolVarBranch | INTBOOL_VAR_CHB_SIZE_MAX (IntCHB ic, BoolCHB bc) |
| Select variable with largest CHB Q-score divided by domain size. | |
| BoolValBranch | i2b (const IntValBranch &ivb) |
| Map respective integer value selection to Boolean value selection. | |
| GECODE_FLATZINC_EXPORT void | branch (Home home, const IntVarArgs &x, const BoolVarArgs &y, IntBoolVarBranch vars, IntValBranch vals) |
| Branch function for integer and Boolean variables. | |
| SymbolEntry | se_iv (int i) |
| Construct integer variable entry. | |
| SymbolEntry | se_bv (int i) |
| Construct Boolean variable entry. | |
| SymbolEntry | se_fv (int i) |
| Construct float variable entry. | |
| SymbolEntry | se_sv (int i) |
| Construct set variable entry. | |
| SymbolEntry | se_iva (int i) |
| Construct integer variable array entry. | |
| SymbolEntry | se_bva (int i) |
| Construct Boolean variable array entry. | |
| SymbolEntry | se_fva (int i) |
| Construct float variable array entry. | |
| SymbolEntry | se_sva (int i) |
| Construct set variable array entry. | |
| SymbolEntry | se_i (int i) |
| Construct integer entry. | |
| SymbolEntry | se_b (bool b) |
| Construct Boolean entry. | |
| SymbolEntry | se_s (int i) |
| Construct set entry. | |
| SymbolEntry | se_f (int i) |
| Construct float entry. | |
| SymbolEntry | se_ia (int i) |
| Construct integer array entry. | |
| SymbolEntry | se_ba (int i) |
| Construct Boolean array entry. | |
| SymbolEntry | se_sa (int i) |
| Construct set array entry. | |
| SymbolEntry | se_fa (int i) |
| Construct float array entry. | |
| GECODE_FLATZINC_EXPORT Registry & | registry (void) |
| Return global registry object. | |
Variables | |
| GECODE_FLATZINC_EXPORT Rnd | defrnd |
| Uninitialized default random number generator. | |
Interpreter for the FlatZinc language.
The Gecode::FlatZinc namespace contains all functionality required to parse and solve constraint models written in the FlatZinc language.
Definition at line 133 of file lastval.hh.
Definition at line 144 of file lastval.hh.
Definition at line 156 of file lastval.hh.
Definition at line 171 of file lastval.hh.
| typedef std::pair<std::string,Option<std::vector<int>* > > Gecode::FlatZinc::intvartype |
| typedef std::pair<std::string, VarSpec*> Gecode::FlatZinc::varspec |
| GECODE_FLATZINC_EXPORT FlatZincSpace * Gecode::FlatZinc::parse | ( | const std::string & | fileName, |
| Printer & | p, | ||
| std::ostream & | err = std::cerr, | ||
| FlatZincSpace * | fzs = nullptr, | ||
| Rnd & | rnd = defrnd ) |
Parse FlatZinc file fileName into fzs and return it.
Creates a new empty FlatZincSpace if fzs is nullptr.
| GECODE_FLATZINC_EXPORT FlatZincSpace * Gecode::FlatZinc::parse | ( | std::istream & | is, |
| Printer & | p, | ||
| std::ostream & | err = std::cerr, | ||
| FlatZincSpace * | fzs = nullptr, | ||
| Rnd & | rnd = defrnd ) |
Parse FlatZinc from is into fzs and return it.
Creates a new empty FlatZincSpace if fzs is nullptr.
| GECODE_FLATZINC_EXPORT std::string Gecode::FlatZinc::encode_blackbox_request | ( | const BlackBoxCall & | call | ) |
Encode one request for the executable backend's line protocol.
| GECODE_FLATZINC_EXPORT void Gecode::FlatZinc::decode_blackbox_response | ( | const std::string & | response, |
| BlackBoxCall & | call ) |
Decode and validate one response from the executable backend.
| BlackBoxProcessSession * Gecode::FlatZinc::create_blackbox_process | ( | const std::string & | program, |
| const std::vector< std::string > & | args ) |
Create the process implementation selected for the target platform.
| void Gecode::FlatZinc::blackbox | ( | Home | home, |
| BlackBoxContextHandle & | context, | ||
| const IntVarArgs & | int_in, | ||
| const IntVarArgs & | int_out, | ||
| const FloatVarArgs & | float_in, | ||
| const FloatVarArgs & | float_out, | ||
| const std::string & | mode, | ||
| const std::string & | target, | ||
| const std::vector< std::string > & | args ) |
| void Gecode::FlatZinc::blackbox_bounds | ( | Home | home, |
| BlackBoxContextHandle & | context, | ||
| const IntVarArgs & | ivar, | ||
| const FloatVarArgs & | fvar, | ||
| const std::string & | mode, | ||
| const std::string & | target, | ||
| const std::vector< std::string > & | args, | ||
| const std::vector< int > & | reason ) |
|
inline |
Variable selection for both integer and Boolean variables.
Select variable with largest accumulated failure count
Definition at line 114 of file branch.hpp.
|
inline |
Select variable with largest accumulated failure count.
Definition at line 118 of file branch.hpp.
|
inline |
Select variable with highest action.
Definition at line 122 of file branch.hpp.
|
inline |
Select variable with highest action.
Definition at line 126 of file branch.hpp.
|
inline |
Select variable with largest CHB Q-score.
Definition at line 130 of file branch.hpp.
|
inline |
Select variable with largest CHB Q-score.
Definition at line 134 of file branch.hpp.
|
inline |
Select variable with largest accumulated failure count divided by domain size.
Definition at line 138 of file branch.hpp.
|
inline |
Select variable with largest accumulated failure count divided by domain size.
Definition at line 142 of file branch.hpp.
|
inline |
Select variable with largest action divided by domain size.
Definition at line 146 of file branch.hpp.
|
inline |
Select variable with largest action divided by domain size.
Definition at line 150 of file branch.hpp.
|
inline |
Select variable with largest CHB Q-score divided by domain size.
Definition at line 154 of file branch.hpp.
|
inline |
Select variable with largest CHB Q-score divided by domain size.
Definition at line 158 of file branch.hpp.
|
inline |
Map respective integer value selection to Boolean value selection.
Definition at line 421 of file branch.hpp.
| GECODE_FLATZINC_EXPORT void Gecode::FlatZinc::branch | ( | Home | home, |
| const IntVarArgs & | x, | ||
| const BoolVarArgs & | y, | ||
| IntBoolVarBranch | vars, | ||
| IntValBranch | vals ) |
Branch function for integer and Boolean variables.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| GECODE_FLATZINC_EXPORT Registry & Gecode::FlatZinc::registry | ( | void | ) |
Return global registry object.
|
extern |
Uninitialized default random number generator.