counter updated each time we create a new (unique) formula. Doing so saves a lot of memory during the translation of the ltlcounter formulae, because the formulae are quite big and storing a string representation of each formula on its node was a bad idea. For instance with n=12, the translation now uses 40MB where it used 290MB. (Note: in both cases, 20MB is being used by the BDD cache.) * src/ltlast/formula.hh (hash_key_): Rename as ... (count_): ... this. (hash): Adjust. (max_count): New static variable to count the number of formulae created. (formula): Update max_count and set count_. (dump): Make it a virtual pure method. (set_key_): Remove. (formula_ptr_less_than): Speed up and return false when the two formula pointer are equal. * src/ltlast/formula.cc (set_key_, dump): Remove. * src/ltlast/atomic_prop.cc, src/ltlast/atomic_prop.hh, src/ltlast/automatop.cc, src/ltlast/automatop.hh, src/ltlast/binop.cc, src/ltlast/binop.hh, src/ltlast/constant.cc, src/ltlast/constant.hh, src/ltlast/multop.cc, src/ltlast/multop.hh, src/ltlast/unop.cc, src/ltlast/unop.hh: Empty the constructor (do not precompute the dump_ anymore), and add a dump() implementation.
79 lines
2.5 KiB
C++
79 lines
2.5 KiB
C++
// Copyright (C) 2003, 2004, 2009 Laboratoire d'Informatique de Paris 6 (LIP6),
|
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
|
// et Marie Curie.
|
|
//
|
|
// 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 2 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 Spot; see the file COPYING. If not, write to the Free
|
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
// 02111-1307, USA.
|
|
|
|
/// \file ltlast/atomic_prop.hh
|
|
/// \brief LTL atomic propositions
|
|
#ifndef SPOT_LTLAST_ATOMIC_PROP_HH
|
|
# define SPOT_LTLAST_ATOMIC_PROP_HH
|
|
|
|
#include <string>
|
|
#include <iosfwd>
|
|
#include <map>
|
|
#include "refformula.hh"
|
|
#include "ltlenv/environment.hh"
|
|
|
|
namespace spot
|
|
{
|
|
namespace ltl
|
|
{
|
|
|
|
/// \brief Atomic propositions.
|
|
/// \ingroup ltl_ast
|
|
class atomic_prop : public ref_formula
|
|
{
|
|
public:
|
|
/// Build an atomic proposition with name \a name in
|
|
/// environment \a env.
|
|
static atomic_prop* instance(const std::string& name, environment& env);
|
|
|
|
virtual void accept(visitor& visitor);
|
|
virtual void accept(const_visitor& visitor) const;
|
|
|
|
/// Get the name of the atomic proposition.
|
|
const std::string& name() const;
|
|
/// Get the environment of the atomic proposition.
|
|
environment& env() const;
|
|
|
|
/// Return a canonic representation of the atomic proposition
|
|
virtual std::string dump() const;
|
|
|
|
/// Number of instantiated atomic propositions. For debugging.
|
|
static unsigned instance_count();
|
|
/// List all instances of atomic propositions. For debugging.
|
|
static std::ostream& dump_instances(std::ostream& os);
|
|
|
|
protected:
|
|
atomic_prop(const std::string& name, environment& env);
|
|
virtual ~atomic_prop();
|
|
|
|
typedef std::pair<std::string, environment*> pair;
|
|
typedef std::map<pair, atomic_prop*> map;
|
|
static map instances;
|
|
|
|
private:
|
|
std::string name_;
|
|
environment* env_;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // SPOT_LTLAST_ATOMICPROP_HH
|