* src/ltlast/allnodes.hh, src/ltlast/atomic_prop.hh,
src/ltlast/binop.hh, src/ltlast/constant.hh, src/ltlast/formula.hh, src/ltlast/multop.hh, src/ltlast/predecl.hh, src/ltlast/refformula.hh, src/ltlast/unop.hh, src/ltlast/visitor.hh: Use file to introduce each file.
This commit is contained in:
parent
04fc0b986f
commit
6853977be2
11 changed files with 47 additions and 8 deletions
|
|
@ -1,5 +1,12 @@
|
||||||
2004-08-09 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
2004-08-09 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/ltlast/allnodes.hh, src/ltlast/atomic_prop.hh,
|
||||||
|
src/ltlast/binop.hh, src/ltlast/constant.hh,
|
||||||
|
src/ltlast/formula.hh, src/ltlast/multop.hh,
|
||||||
|
src/ltlast/predecl.hh, src/ltlast/refformula.hh,
|
||||||
|
src/ltlast/unop.hh, src/ltlast/visitor.hh: Use \file to introduce
|
||||||
|
each file.
|
||||||
|
|
||||||
* doc/Doxyfile.in (STRIP_FROM_INC_PATH): Define, so that the
|
* doc/Doxyfile.in (STRIP_FROM_INC_PATH): Define, so that the
|
||||||
`#include' references are correct.
|
`#include' references are correct.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2003 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -19,6 +19,12 @@
|
||||||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
// 02111-1307, USA.
|
// 02111-1307, USA.
|
||||||
|
|
||||||
|
/// \file ltlast/allnodes.hh
|
||||||
|
/// \brief Define all LTL node types.
|
||||||
|
///
|
||||||
|
/// This file is usually needed when \b defining a visitor.
|
||||||
|
/// Prefer ltlast/predecl.hh when only \b declaring methods and functions
|
||||||
|
/// over LTL nodes.
|
||||||
#ifndef SPOT_LTLAST_ALLNODES_HH
|
#ifndef SPOT_LTLAST_ALLNODES_HH
|
||||||
# define SPOT_LTLAST_ALLNODES_HH
|
# define SPOT_LTLAST_ALLNODES_HH
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,8 @@
|
||||||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
// 02111-1307, USA.
|
// 02111-1307, USA.
|
||||||
|
|
||||||
|
/// \file ltlast/atomic_prop.hh
|
||||||
|
/// \brief LTL atomic propositions
|
||||||
#ifndef SPOT_LTLAST_ATOMIC_PROP_HH
|
#ifndef SPOT_LTLAST_ATOMIC_PROP_HH
|
||||||
# define SPOT_LTLAST_ATOMIC_PROP_HH
|
# define SPOT_LTLAST_ATOMIC_PROP_HH
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2003 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -19,6 +19,11 @@
|
||||||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
// 02111-1307, USA.
|
// 02111-1307, USA.
|
||||||
|
|
||||||
|
/// \file ltlast/binop.hh
|
||||||
|
/// \brief LTL binary operators
|
||||||
|
///
|
||||||
|
/// This does not include \c AND and \c OR operators. These are
|
||||||
|
/// considered to be multi-operand operators (see spot::ltl::multop).
|
||||||
#ifndef SPOT_LTLAST_BINOP_HH
|
#ifndef SPOT_LTLAST_BINOP_HH
|
||||||
# define SPOT_LTLAST_BINOP_HH
|
# define SPOT_LTLAST_BINOP_HH
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2003 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -19,6 +19,8 @@
|
||||||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
// 02111-1307, USA.
|
// 02111-1307, USA.
|
||||||
|
|
||||||
|
/// \file ltlast/constant.hh
|
||||||
|
/// \brief LTL constants
|
||||||
#ifndef SPOT_LTLAST_CONSTANT_HH
|
#ifndef SPOT_LTLAST_CONSTANT_HH
|
||||||
# define SPOT_LTLAST_CONSTANT_HH
|
# define SPOT_LTLAST_CONSTANT_HH
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2003 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -19,6 +19,8 @@
|
||||||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
// 02111-1307, USA.
|
// 02111-1307, USA.
|
||||||
|
|
||||||
|
/// \file ltlast/formula.hh
|
||||||
|
/// \brief LTL formula interface
|
||||||
#ifndef SPOT_LTLAST_FORMULAE_HH
|
#ifndef SPOT_LTLAST_FORMULAE_HH
|
||||||
# define SPOT_LTLAST_FORMULAE_HH
|
# define SPOT_LTLAST_FORMULAE_HH
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2003 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -19,6 +19,8 @@
|
||||||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
// 02111-1307, USA.
|
// 02111-1307, USA.
|
||||||
|
|
||||||
|
/// \file ltlast/multop.hh
|
||||||
|
/// \brief LTL multi-operand operators
|
||||||
#ifndef SPOT_LTLAST_MULTOP_HH
|
#ifndef SPOT_LTLAST_MULTOP_HH
|
||||||
# define SPOT_LTLAST_MULTOP_HH
|
# define SPOT_LTLAST_MULTOP_HH
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2003 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -19,6 +19,13 @@
|
||||||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
// 02111-1307, USA.
|
// 02111-1307, USA.
|
||||||
|
|
||||||
|
/// \file ltlast/predecl.hh
|
||||||
|
/// \brief Predeclare all LTL node types.
|
||||||
|
///
|
||||||
|
/// This file is usually used when \b declaring methods and functions
|
||||||
|
/// over LTL nodes.
|
||||||
|
/// Use ltlast/allnodes.hh or an individual header when the definition of
|
||||||
|
/// the node is actually needed.
|
||||||
#ifndef SPOT_LTLAST_PREDECL_HH
|
#ifndef SPOT_LTLAST_PREDECL_HH
|
||||||
# define SPOT_LTLAST_PREDECL_HH
|
# define SPOT_LTLAST_PREDECL_HH
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,8 @@
|
||||||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
// 02111-1307, USA.
|
// 02111-1307, USA.
|
||||||
|
|
||||||
|
/// \file ltlast/refformula.hh
|
||||||
|
/// \brief Reference-counted LTL formulae
|
||||||
#ifndef SPOT_LTLAST_REFFORMULAE_HH
|
#ifndef SPOT_LTLAST_REFFORMULAE_HH
|
||||||
# define SPOT_LTLAST_REFFORMULAE_HH
|
# define SPOT_LTLAST_REFFORMULAE_HH
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2003 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -19,6 +19,8 @@
|
||||||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
// 02111-1307, USA.
|
// 02111-1307, USA.
|
||||||
|
|
||||||
|
/// \file ltlast/unop.hh
|
||||||
|
/// \brief LTL unary operators
|
||||||
#ifndef SPOT_LTLAST_UNOP_HH
|
#ifndef SPOT_LTLAST_UNOP_HH
|
||||||
# define SPOT_LTLAST_UNOP_HH
|
# define SPOT_LTLAST_UNOP_HH
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2003 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -19,6 +19,8 @@
|
||||||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
// 02111-1307, USA.
|
// 02111-1307, USA.
|
||||||
|
|
||||||
|
/// \file ltlast/visitor.hh
|
||||||
|
/// \brief LTL visitor interface
|
||||||
#ifndef SPOT_LTLAST_VISITOR_HH
|
#ifndef SPOT_LTLAST_VISITOR_HH
|
||||||
# define SPOT_LTLAST_VISITOR_HH
|
# define SPOT_LTLAST_VISITOR_HH
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue