spot/spot/ltsmin/spins_kripke.hh
Florian Renkin 96ff2225e3 Fix typos in doc, comments and messages
* bin/README, bin/common_conv.hh, bin/common_trans.cc,
    bin/ltlsynt.cc, bin/spot-x.cc, spot/gen/automata.hh,
    spot/graph/graph.hh, spot/ltsmin/ltsmin.hh,
    spot/ltsmin/spins_interface.hh, spot/ltsmin/spins_kripke.hh,
    spot/mc/bloemen.hh, spot/mc/bloemen_ec.hh, spot/mc/cndfs.hh,
    spot/mc/deadlock.hh, spot/mc/intersect.hh, spot/mc/lpar13.hh,
    spot/mc/mc_instanciator.hh, spot/misc/bareword.cc,
    spot/misc/fixpool.hh, spot/misc/formater.hh, spot/misc/minato.hh,
    spot/misc/satsolver.hh, spot/misc/timer.hh,
    spot/parseaut/public.hh, spot/priv/partitioned_relabel.cc,
    spot/priv/satcommon.hh, spot/ta/ta.hh, spot/ta/taexplicit.cc,
    spot/ta/taproduct.hh, spot/ta/tgta.hh, spot/taalgos/reachiter.hh,
    spot/taalgos/tgba2ta.hh, spot/tl/apcollect.cc,
    spot/tl/apcollect.hh, spot/tl/formula.cc, spot/tl/parse.hh,
    spot/tl/randomltl.hh, spot/tl/relabel.hh, spot/tl/simplify.cc,
    spot/twa/acc.hh, spot/twa/bddprint.hh, spot/twa/formula2bdd.cc,
    spot/twa/twa.hh, spot/twa/twagraph.cc, spot/twa/twagraph.hh,
    spot/twaalgos/aiger.cc, spot/twaalgos/aiger.hh,
    spot/twaalgos/alternation.hh,  spot/twaalgos/cleanacc.cc,
    spot/twaalgos/cobuchi.cc, spot/twaalgos/contains.cc,
    spot/twaalgos/couvreurnew.cc, spot/twaalgos/cycles.hh,
    spot/twaalgos/degen.cc, spot/twaalgos/degen.hh,
    spot/twaalgos/dot.hh, spot/twaalgos/dtbasat.cc,
    spot/twaalgos/dtwasat.cc, spot/twaalgos/dtwasat.hh,
    spot/twaalgos/dualize.cc, spot/twaalgos/emptiness.hh,
    spot/twaalgos/emptiness_stats.hh, spot/twaalgos/game.cc,
    spot/twaalgos/genem.hh, spot/twaalgos/hoa.hh,
    spot/twaalgos/langmap.hh, spot/twaalgos/ltl2tgba_fm.hh,
    spot/twaalgos/magic.cc, spot/twaalgos/magic.hh,
    spot/twaalgos/mask.hh, spot/twaalgos/mealy_machine.cc,
    spot/twaalgos/mealy_machine.hh,
    spot/twaalgos/minimize.hh, spot/twaalgos/parity.cc,
    spot/twaalgos/parity.hh, spot/twaalgos/postproc.cc,
    spot/twaalgos/product.hh, spot/twaalgos/reachiter.hh,
    spot/twaalgos/relabel.cc, spot/twaalgos/remfin.cc,
    spot/twaalgos/remfin.hh, spot/twaalgos/sccfilter.cc,
    spot/twaalgos/sccinfo.hh, spot/twaalgos/se05.cc,
    spot/twaalgos/se05.hh, spot/twaalgos/simulation.hh,
    spot/twaalgos/split.hh, spot/twaalgos/stats.hh,
    spot/twaalgos/synthesis.cc, spot/twaalgos/synthesis.hh,
    spot/twaalgos/tau03.hh, spot/twaalgos/tau03opt.hh,
    spot/twaalgos/toparity.hh, spot/twaalgos/totgba.hh,
    spot/twaalgos/translate.hh, spot/twaalgos/word.cc,
    spot/twaalgos/word.hh, spot/twaalgos/zlktree.cc,
    spot/twaalgos/zlktree.hh, spot/twacube/cube.hh,
    spot/twacube/twacube.hh, tests/core/cube.cc,
    tests/core/ltlsynt.test, tests/core/parity.cc,
    tests/core/safra.cc, tests/core/twagraph.cc: here
2024-04-16 17:01:31 +02:00

260 lines
9.2 KiB
C++

// -*- coding: utf-8 -*-
// Copyright (C) by the Spot authors, see the AUTHORS file for details.
//
// This file is part of Spot, a model checking library.
//
// Spot is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// Spot is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
// License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#include <spot/bricks/brick-hash>
#include <spot/bricks/brick-hashset>
#include <spot/kripke/kripke.hh>
#include <spot/ltsmin/spins_interface.hh>
#include <spot/misc/fixpool.hh>
#include <spot/misc/mspool.hh>
#include <spot/misc/intvcomp.hh>
#include <spot/misc/intvcmp2.hh>
#include <spot/twacube/cube.hh>
/// This file aggregates all classes and typedefs necessary
/// to build a kripke that is thread safe
namespace spot
{
/// \brief A Spins state is represented as an array of integer
/// Note that this array has two reserved slots (position 0 an 1).
///
/// At position 0 we store the hash associated to the state to avoid
/// multiple computations.
///
/// At position 1 we store the size of the state: keeping this information
/// allows to compress the state
typedef int* cspins_state;
/// \brief This class provides the ability to compare two states
struct cspins_state_equal
{
bool operator()(const cspins_state lhs, const cspins_state rhs) const
{
return 0 == memcmp(lhs, rhs, (2+rhs[1])* sizeof(int));
}
};
/// \brief This class provides the ability to hash a state
struct cspins_state_hash
{
size_t operator()(const cspins_state that) const
{
return that[0];
}
};
/// \brief The management of states (i.e. allocation/deallocation) can
/// be painless since every time we have to consider wether the state will
/// be compressed or not. This class aims to simplify this management.
class cspins_state_manager final
{
public:
/// \brief Build a manager for a state of \a state_size variables
/// and indicate wether compression should be used:
/// - 1 for handle large models
/// - 2 (faster) assume all values in [0 .. 2^28-1]
cspins_state_manager(unsigned int state_size, int compress);
/// \brief Get Rid of the internal representation of the state
int* unbox_state(cspins_state s) const;
/// \brief Builder for a state from a raw description given in \a dst
///
/// \a cmp is the area we can use to compute the compressed
/// representatation of dst.
/// \a cmpsize the size of the previous area
cspins_state alloc_setup(int* dst, int* cmp, size_t cmpsize);
/// \brief Helper to decompress a state
void decompress(cspins_state s, int* uncompressed, unsigned size) const;
/// \brief Help the manager to reclam the memory of a state
void dealloc(cspins_state s);
/// \brief The size of a state
unsigned int size() const;
private:
fixed_size_pool<pool_type::Unsafe> p_;
multiple_size_pool msp_;
bool compress_;
const unsigned int state_size_;
void (*fn_compress_)(const int*, size_t, int*, size_t&);
void (*fn_decompress_)(const int*, size_t, int*, size_t);
};
// \brief This structure is used as a parameter during callback when
// generating states from the shared librarie produced by LTSmin.
struct inner_callback_parameters
{
cspins_state_manager* manager; // The state manager
std::vector<cspins_state>* succ; // The successors of a state
int* compressed; // Area to store compressed state
int* uncompressed; // Area to store uncompressed state
bool compress; // Should the state be compressed?
bool selfloopize; // Should the state be selfloopized
};
/// \brief This class provides an iterator over the successors of a state.
/// All successors are computed once when an iterator is recycled or
/// created.
///
/// Note: Two threads will explore successors with two different orders
class cspins_iterator final
{
public:
// Inner struct used to pack the various arguments required by the iterator
struct cspins_iterator_param
{
cspins_state s;
const spot::spins_interface* d;
cspins_state_manager& manager;
inner_callback_parameters& inner;
cube cond;
bool compress;
bool selfloopize;
spot::cubeset& cubeset;
int dead_idx;
unsigned tid;
};
cspins_iterator(const cspins_iterator&) = delete;
cspins_iterator(cspins_iterator&) = delete;
cspins_iterator(cspins_iterator_param& p);
void recycle(cspins_iterator_param& p);
~cspins_iterator();
void next();
bool done() const;
cspins_state state() const;
cube condition() const;
private:
/// \brief Compute the real index in the successor vector
unsigned compute_index() const;
inline void setup_iterator(cspins_state s,
const spot::spins_interface* d,
cspins_state_manager& manager,
inner_callback_parameters& inner,
cube& cond,
bool compress,
bool selfloopize,
cubeset& cubeset,
int dead_idx);
std::vector<cspins_state> successors_;
unsigned int current_;
cube cond_;
unsigned tid_;
};
// A specialisation of the template class kripke that is thread safe.
template<>
class kripkecube<cspins_state, cspins_iterator> final
{
// Define operators that are available for atomic proposition
enum class relop
{
OP_EQ_VAR, // 1 == a
OP_NE_VAR, // 1 != a
OP_LT_VAR, // 1 < a
OP_GT_VAR, // 1 > a
OP_LE_VAR, // 1 <= a
OP_GE_VAR, // 1 >= a
VAR_OP_EQ, // a == 1
VAR_OP_NE, // a != 1
VAR_OP_LT, // a < 1
VAR_OP_GT, // a >= 1
VAR_OP_LE, // a <= 1
VAR_OP_GE, // a >= 1
VAR_OP_EQ_VAR, // a == b
VAR_OP_NE_VAR, // a != b
VAR_OP_LT_VAR, // a < b
VAR_OP_GT_VAR, // a > b
VAR_OP_LE_VAR, // a <= b
VAR_OP_GE_VAR, // a >= b
VAR_DEAD // The atomic proposition used to label deadlock
};
// Structure for complex atomic proposition
struct one_prop
{
int lval; // Index of left variable or raw number
relop op; // The operator
int rval; // Index or right variable or raw number
};
// Data structure to store complex atomic propositions
typedef std::vector<one_prop> prop_set;
prop_set pset_;
public:
kripkecube(spins_interface_ptr sip, bool compress,
std::vector<std::string> visible_aps,
bool selfloopize, std::string dead_prop,
unsigned int nb_threads);
~kripkecube();
cspins_state initial(unsigned tid);
std::string to_string(const cspins_state s, unsigned tid = 0) const;
cspins_iterator* succ(const cspins_state s, unsigned tid);
void recycle(cspins_iterator* it, unsigned tid);
/// \brief List the atomic propositions used by *this* kripke
const std::vector<std::string> ap();
/// \brief The number of thread used by *this* kripke
unsigned get_threads();
private:
/// \brief Parse the set of atomic proposition to have a more
/// efficient data strucure for computation
void match_aps(std::vector<std::string>& aps, std::string dead_prop);
/// \brief Compute the cube associated to each state. The cube
/// will then be given to all iterators.
void compute_condition(cube c, cspins_state s, unsigned tid = 0);
spins_interface_ptr sip_; // The interface to the shared library
const spot::spins_interface* d_; // To avoid numerous sip_.get()
cspins_state_manager* manager_; // One manager per thread
bool compress_; // Should a compression be performed
// One per threads to store no longer used iterators (and save memory)
std::vector<std::vector<cspins_iterator*>> recycle_;
inner_callback_parameters* inner_; // One callback per thread
cubeset cubeset_; // A single cubeset to manipulate cubes
bool selfloopize_; // Should selfloopize be performed
int dead_idx_; // If yes, index of the "dead ap"
std::vector<std::string> aps_; // All the atomic propositions
unsigned int nb_threads_; // The number of threads used
};
/// \brief shortcut to manipulate the kripke below
typedef std::shared_ptr<spot::kripkecube<spot::cspins_state,
spot::cspins_iterator>>
ltsmin_kripkecube_ptr;
}
#include <spot/ltsmin/spins_kripke.hxx>