/*! * \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_LinearSU_h #define Alg_LinearSU_h #ifdef SIMP #include "simp/SimpSolver.h" #else #include "core/Solver.h" #endif #include "../Encoder.h" #include "../MaxSAT.h" #include #include #include using Glucose::vec; using Glucose::Lit; namespace openwbo { //================================================================================================= class LinearSU : public MaxSAT { public: LinearSU(int verb = _VERBOSITY_MINIMAL_, bool bmo = true, int enc = _CARD_MTOTALIZER_, int pb = _PB_SWC_) : solver(NULL), is_bmo(false) { pb_encoding = pb; verbosity = verb; bmoMode = bmo; encoding = enc; encoder.setCardEncoding(encoding); encoder.setPBEncoding(pb); } ~LinearSU() { if (solver != NULL) delete solver; objFunction.clear(); coeffs.clear(); } StatusCode search(); // Linear search. // Print solver configuration. void printConfiguration(bool bmo, int ptype) { if(!print) return; printf("c ==========================================[ Solver Settings " "]============================================\n"); printf("c | " " |\n"); print_LinearSU_configuration(); if (bmo || ptype == _UNWEIGHTED_) print_Card_configuration(encoder.getCardEncoding()); else print_PB_configuration(encoder.getPBEncoding()); printf("c | " " |\n"); } protected: // Rebuild MaxSAT solver // // Rebuild MaxSAT solver with BMO algorithm. Solver *rebuildBMO(vec> &functions, vec &weights, uint64_t currentWeight); Solver *rebuildSolver(uint64_t min_weight = 1); // Rebuild MaxSAT solver. // Linear search algorithms. // StatusCode normalSearch(); // Classic linear search algorithm. StatusCode bmoSearch(); // Linear search algorithm with lexicographical order. // Greater than comparator. bool static greaterThan(uint64_t i, uint64_t j) { return (i > j); } // Other void initRelaxation(); // Relaxes soft clauses. // Print LinearSU configuration. void print_LinearSU_configuration(); // savePhase void savePhase(Solver * solver); Solver *solver; // SAT Solver used as a black box. Encoder encoder; // Interface for the encoder of constraints to CNF. int encoding; // Encoding for cardinality constraints. int pb_encoding; bool bmoMode; // Enables BMO mode. bool allFalse; // Forces relaxation variables to be false. vec objFunction; // Literals to be used in the constraint that excludes // models. vec coeffs; // Coefficients of the literals that are used in the // constraint that excludes models. bool is_bmo; // Stores if the formula is BMO or not. }; } // namespace openwbo #endif