/*! * \author Ruben Martins - ruben@sat.inesc-id.pt * * @section LICENSE * * Open-WBO, Copyright (c) 2013-2017, Ruben Martins, Vasco Manquinho, Ines Lynce * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ #ifndef Enc_Totalizer_h #define Enc_Totalizer_h #ifdef SIMP #include "simp/SimpSolver.h" #else #include "core/Solver.h" #endif #include "Encodings.h" #include "core/SolverTypes.h" namespace openwbo { class Totalizer : public Encodings { public: Totalizer(int strategy = _INCREMENTAL_NONE_) { blocking = lit_Undef; hasEncoding = false; joinMode = false; current_cardinality_rhs = -1; // -1 corresponds to an unitialized value incremental_strategy = strategy; n_clauses = 0; n_variables = 0; } ~Totalizer() {} void build(Solver *S, vec &lits, int64_t rhs); void join(Solver *S, vec &lits, int64_t rhs); void update(Solver *S, int64_t rhs, vec &lits, vec &assumptions); void update(Solver *S, int64_t rhs) { vec lits; vec assumptions; update(S, rhs, lits, assumptions); } void add(Solver *S, Totalizer &tot, int64_t rhs); bool hasCreatedEncoding() { return hasEncoding; } void setIncremental(int incremental) { incremental_strategy = incremental; } int getIncremental() { return incremental_strategy; } // void enableConstraintBlocker(Solver* S) // { // if (incremental_strategy == _INCREMENTAL_BLOCKING_) // { // printf("Error: Blocking incremental strategy does not support the " // "use of constraint blockers.\n"); // printf("s UNKNOWN\n"); // exit(_ERROR_); // } // assert(!hasEncoding); // if (blocking == lit_Undef) // { // Lit p = mkLit(S->nVars(), false); // newSATVariable(S); // blocking = p; // } // } // Lit getConstraintBlocker() { return blocking; } // returns 'lit_Undef' if // constraint blockers are not enabled int getNbClauses() { return n_clauses; } int getNbVariables() { return n_variables; } void resetCounters() { n_clauses = 0; n_variables = 0; } vec &lits() { return ilits; } vec &outputs() { return cardinality_outlits; } protected: void encode(Solver *S, vec &lits); void adder(Solver *S, vec &left, vec &right, vec &output); void incremental(Solver *S, int64_t rhs); void toCNF(Solver *S, vec &lits); vec> totalizerIterative_left; vec> totalizerIterative_right; vec> totalizerIterative_output; vec totalizerIterative_rhs; Lit blocking; // Controls the blocking literal for the incremental blocking. bool hasEncoding; // TEMP vec ilits; vec olits; vec cardinality_inlits; // Stores the inputs of the cardinality // constraint encoding for the totalizer encoding vec cardinality_outlits; // Stores the outputs of the cardinality // constraint encoding for incremental solving int incremental_strategy; int64_t current_cardinality_rhs; vec disable_lits; // Contains a vector with a list of blocking literals. bool joinMode; int n_clauses; int n_variables; }; } // namespace openwbo #endif