/***************************************************************************************[SharedCompanion.h] Glucose -- Copyright (c) 2009-2014, Gilles Audemard, Laurent Simon CRIL - Univ. Artois, France LRI - Univ. Paris Sud, France (2009-2013) Labri - Univ. Bordeaux, France Syrup (Glucose Parallel) -- Copyright (c) 2013-2014, Gilles Audemard, Laurent Simon CRIL - Univ. Artois, France Labri - Univ. Bordeaux, France Glucose sources are based on MiniSat (see below MiniSat copyrights). Permissions and copyrights of Glucose (sources until 2013, Glucose 3.0, single core) are exactly the same as Minisat on which it is based on. (see below). Glucose-Syrup sources are based on another copyright. Permissions and copyrights for the parallel version of Glucose-Syrup (the "Software") are granted, free of charge, to deal with the Software without restriction, including the rights to use, copy, modify, merge, publish, distribute, sublicence, 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 and below copyrights notices and this permission notice shall be included in all copies or substantial portions of the Software; - The parallel version of Glucose (all files modified since Glucose 3.0 releases, 2013) cannot be used in any competitive event (sat competitions/evaluations) without the express permission of the authors (Gilles Audemard / Laurent Simon). This is also the case for any competitive event using Glucose Parallel as an embedded SAT engine (single core or not). --------------- Original Minisat Copyrights Copyright (c) 2003-2006, Niklas Een, Niklas Sorensson Copyright (c) 2007-2010, Niklas Sorensson 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. **************************************************************************************************/ /* This class is responsible for protecting (by mutex) information exchange between threads. * It also allows each solver to send / receive clause / unary clauses. * * Only one sharedCompanion is created for all the solvers */ #ifndef SharedCompanion_h #define SharedCompanion_h #include "core/SolverTypes.h" #include "parallel/ParallelSolver.h" #include "parallel/SolverCompanion.h" #include "parallel/ClausesBuffer.h" namespace Glucose { class SharedCompanion : public SolverCompanion { friend class MultiSolvers; friend class ParallelSolver; public: SharedCompanion(int nbThreads=0); void setNbThreads(int _nbThreads); // Sets the number of threads (cannot by changed once the solver is running) void newVar(bool sign); // Adds a var (used to keep track of unary variables) void printStats(); // Printing statistics of all solvers bool jobFinished(); // True if the job is over bool IFinished(ParallelSolver *s); // returns true if you are the first solver to finish bool addSolver(ParallelSolver*); // attach a solver to accompany void addLearnt(ParallelSolver *s,Lit unary); // Add a unary clause to share bool addLearnt(ParallelSolver *s, Clause & c); // Add a clause to the shared companion, as a database manager bool getNewClause(ParallelSolver *s, int &th, vec & nc); // gets a new interesting clause for solver s Lit getUnary(ParallelSolver *s); // Gets a new unary literal inline ParallelSolver* winner(){return jobFinishedBy;} // Gets the first solver that called IFinished() protected: ClausesBuffer clausesBuffer; // A big blackboard for all threads sharing non unary clauses int nbThreads; // Number of threads // A set of mutex variables pthread_mutex_t mutexSharedCompanion; // mutex for any high level sync between all threads (like reportf) pthread_mutex_t mutexSharedClauseCompanion; // mutex for reading/writing clauses on the blackboard pthread_mutex_t mutexSharedUnitCompanion; // mutex for reading/writing unit clauses on the blackboard pthread_mutex_t mutexJobFinished; bool bjobFinished; ParallelSolver *jobFinishedBy; bool panicMode; // panicMode means no more increasing space needed lbool jobStatus; // globale status of the job // Shared clauses are a queue of lits... // friend class wholearnt; vec nextUnit; // indice of next unit clause to retrieve for solver number i vec unitLit; // Set of unit literals found so far vec isUnary; // sign of the unary var (if proved, or l_Undef if not) double random_seed; // Returns a random float 0 <= x < 1. Seed must never be 0. static inline double drand(double& seed) { seed *= 1389796; int q = (int)(seed / 2147483647); seed -= (double)q * 2147483647; return seed / 2147483647; } // Returns a random integer 0 <= x < size. Seed must never be 0. static inline int irand(double& seed, int size) { return (int)(drand(seed) * size); } }; } #endif