* src/ltlvisit/randomltl.cc, src/ltlvisit/randomltl.hh: New files.
* src/ltlvisit/Makefile.am (ltlvisit_HEADERS, libltlvisit_la_SOURCES): Distribute them. * src/ltltest/randltl.cc: New file. * src/ltltest/Makefile.am (LDADD): Link with ../libspot.la directly. (noinst_PROGRAMS, randltl_SOURCES): New. (EXTRA_DIST, CLEANFILES): The list of random formulae is now generated. * src/ltltest/formulae.txt: Delete. * src/ltltest/reduc.test: Use randltl to generate formulae. * src/ltlvisit/length.cc (length_visitor): Fix computation of the length of multops. * src/ltlvisit/length.hh (length): Document the length of multops.
This commit is contained in:
parent
7216701631
commit
e366b081a8
10 changed files with 573 additions and 2214 deletions
136
src/ltlvisit/randomltl.hh
Normal file
136
src/ltlvisit/randomltl.hh
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
// Copyright (C) 2005 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.
|
||||
|
||||
#ifndef SPOT_LTLVISIT_RANDOMLTL_HH
|
||||
# define SPOT_LTLVISIT_RANDOMLTL_HH
|
||||
|
||||
#include "apcollect.hh"
|
||||
#include <iosfwd>
|
||||
|
||||
namespace spot
|
||||
{
|
||||
namespace ltl
|
||||
{
|
||||
|
||||
/// \brief Generate random LTL formulae.
|
||||
/// \ingroup ltl_io
|
||||
///
|
||||
/// This class recursively construct LTL formulae of a given size.
|
||||
/// The formulae will use the use atomic propositions from the
|
||||
/// set of proposition passed to the constructor, in addition to the
|
||||
/// constant and all LTL operators supported by Spot.
|
||||
///
|
||||
/// By default each operator has equal chance to be selected.
|
||||
/// Also, each atomic proposition has as much chance as each
|
||||
/// constant (i.e., true and false) to be picked. This can be
|
||||
/// tuned using parse_options().
|
||||
class random_ltl
|
||||
{
|
||||
public:
|
||||
/// Create a random LTL generator using atomic propositions from \a ap.
|
||||
random_ltl(const atomic_prop_set* ap);
|
||||
~random_ltl();
|
||||
|
||||
/// \brief Generate a formula of size \a n.
|
||||
///
|
||||
/// It is possible to obtain formulae that are smaller than \a
|
||||
/// n, because some simple simplifications are performed by the
|
||||
/// AST. (For instance the formula <code>a | a</code> is
|
||||
/// automatically reduced to <code>a</code> by spot::ltl::multop.)
|
||||
///
|
||||
/// Furthermore, for the purpose of this generator,
|
||||
/// <code>a | b | c</code> has length 5, while it has length
|
||||
/// <code>4</code> for spot::ltl::length().
|
||||
formula* generate(int n) const;
|
||||
|
||||
/// \brief Print the priorities of each operator, constants,
|
||||
/// and atomic propositions.
|
||||
std::ostream& dump_priorities(std::ostream& os) const;
|
||||
|
||||
/// \brief Update the priorities used to generate LTL formulae.
|
||||
///
|
||||
/// The initial priorities are as follows.
|
||||
///
|
||||
/// \verbatim
|
||||
/// ap n
|
||||
/// false 1
|
||||
/// true 1
|
||||
/// not 1
|
||||
/// F 1
|
||||
/// G 1
|
||||
/// X 1
|
||||
/// equiv 1
|
||||
/// implies 1
|
||||
/// xor 1
|
||||
/// R 1
|
||||
/// U 1
|
||||
/// and 1
|
||||
/// or 1
|
||||
/// \endverbatim
|
||||
///
|
||||
/// Where \c n is the number of atomic propositions in the
|
||||
/// set passed to the constructor.
|
||||
///
|
||||
/// This means that each operator has equal chance to be
|
||||
/// selected. Also, each atomic proposition has as much chance
|
||||
/// as each constant (i.e., true and false) to be picked. This
|
||||
/// can be
|
||||
///
|
||||
/// These priorities can be altered using this function.
|
||||
/// \a options should be comma-separated list of KEY=VALUE
|
||||
/// assignments, using keys from the above list.
|
||||
/// For instance <code>"xor=0, F=3"</code> will prevent \c xor
|
||||
/// from being used, and will raise the relative probability of
|
||||
/// occurrences of the \c F operator.
|
||||
const char* parse_options(char* options);
|
||||
|
||||
/// Return the set of atomic proposition used to build formulae.
|
||||
const atomic_prop_set*
|
||||
ap() const
|
||||
{
|
||||
return ap_;
|
||||
}
|
||||
|
||||
protected:
|
||||
void update_sums();
|
||||
|
||||
private:
|
||||
struct op_proba
|
||||
{
|
||||
const char* name;
|
||||
int min_n;
|
||||
double proba;
|
||||
typedef formula* (*builder)(const random_ltl* rl, int n);
|
||||
builder build;
|
||||
void setup(const char* name, int min_n, builder build);
|
||||
};
|
||||
op_proba* proba_;
|
||||
double total_1_;
|
||||
op_proba* proba_2_;
|
||||
double total_2_;
|
||||
double total_2_and_more_;
|
||||
const atomic_prop_set* ap_;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#endif // SPOT_LTLVIST_RANDOMLTL_HH
|
||||
Loading…
Add table
Add a link
Reference in a new issue