/*! * \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 Alg_OLL_h #define Alg_OLL_h #ifdef SIMP #include "simp/SimpSolver.h" #else #include "core/Solver.h" #endif #include "../Encoder.h" #include "../MaxSAT.h" #include #include namespace openwbo { //================================================================================================= class OLL : public MaxSAT { public: OLL(int verb = _VERBOSITY_MINIMAL_, int enc = _CARD_TOTALIZER_) { solver = NULL; verbosity = verb; incremental_strategy = _INCREMENTAL_ITERATIVE_; encoding = enc; encoder.setCardEncoding(enc); min_weight = 1; } ~OLL() { if (solver != NULL) delete solver; } StatusCode search(); // Print solver configuration. void printConfiguration() { if(!print) return; printf("c ==========================================[ Solver Settings " "]============================================\n"); printf("c | " " |\n"); printf("c | Algorithm: %23s " " |\n", "OLL"); print_Card_configuration(encoding); printf("c | " " |\n"); } protected: // Rebuild MaxSAT solver // Solver *rebuildSolver(); // Rebuild MaxSAT solver. // Other void initRelaxation(); // Relaxes soft clauses. StatusCode unweighted(); StatusCode weighted(); Solver *solver; // SAT Solver used as a black box. Encoder encoder; // Interface for the encoder of constraints to CNF. // Controls the incremental strategy used by MSU3 algorithms. int incremental_strategy; // Controls the cardinality encoding used by MSU3 algorithms. int encoding; // Literals to be used in the constraint that excludes models. vec objFunction; vec coeffs; // Coefficients of the literals that are used in the // constraint that excludes models. std::map coreMapping; // Mapping between the assumption literal and // the respective soft clause. std::map coreCardinality; // Mapping between the assumption literal and // the respective soft clause. // lit -> std::map, uint64_t>> boundMapping; // Soft clauses that are currently in the MaxSAT formula. vec activeSoft; uint64_t findNextWeightDiversity(uint64_t weight, std::set &cardinality_assumptions); uint64_t findNextWeight(uint64_t weight, std::set &cardinality_assumptions); uint64_t min_weight; }; } // namespace openwbo #endif