Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
d3a92618
Commit
d3a92618
authored
Jun 30, 2003
by
Alexandre Duret-Lutz
Browse files
* src/tgbaparse/tgbaparse.yy (lines): Expect at last one line.
parent
cd8090d6
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
d3a92618
2003-06-30 Alexandre Duret-Lutz <aduret@src.lip6.fr>
* src/tgbaparse/tgbaparse.yy (lines): Expect at last one line.
* doc/Doxyfile.in (HAVE_DOT): Set to YES to output
collaboration diagrams.
* doc/mainpage.dox: Typo.
...
...
@@ -10,14 +12,14 @@
(state_bdd_product::state_bdd_product): Adjust.
* src/tgba/tgbaproduct.cc (state_bdd_product::state_bdd_product):
Adjust.
* src/tgba/succiter.hh (tgba_bdd_succ_iterator::done):
Mark as const.
* src/tgba/succiterconcrete.cc
* src/tgba/succiterconcrete.cc
(tgba_succ_iterator_concrete::done): Likewise.
* src/tgba/succiterconcrete.hh
(tgba_succ_iterator_concrete::done): Likewise.
* src/tgba/tgbaexplicit.cc
* src/tgba/tgbaexplicit.cc
(tgba_explicit_succ_iterator::done): Likewise.
* src/tgba/tgbaexplicit.hh
(tgba_explicit_succ_iterator::done): Likewise.
...
...
@@ -29,13 +31,13 @@
(tgba_translate_proxy_succ_iterator::done): Likewise.
* src/tgba/tgbatranslateproxy.cc
(tgba_translate_proxy_succ_iterator::done): Likewise.
* src/tgba/succiterconcrete.cc
(tgba_succ_iterator_concrete::next): Call bdd_satoneset
on data_.varandnext_set. The previous implementation
was wrong for GFa.
* src/tgba/tgbabddcoredata.hh: Declare varandnext_set.
* src/tgba/tgbabddcoredata.cc: Handle varandnext_set.
* src/tgba/tgbabddcoredata.cc: Handle varandnext_set.
* doc/Doxygen.in: Enable LaTeX output.
* doc/Makefile.am (spotref.pdf): New rule.
...
...
src/ltlast/visitor.hh
View file @
d3a92618
...
...
@@ -5,16 +5,16 @@
namespace
spot
{
namespace
ltl
{
/// \brief Formula visitor that can modify the formula.
///
/// Writing visitors is the prefered way
/// Writing visitors is the prefered way
/// to traverse a formula, since it doesn't
/// involve any cast.
///
/// If you do not need to modify the visited formula, inherit from
/// spot::ltl:const_visitor instead.
struct
visitor
struct
visitor
{
virtual
void
visit
(
atomic_prop
*
node
)
=
0
;
virtual
void
visit
(
constant
*
node
)
=
0
;
...
...
@@ -25,13 +25,13 @@ namespace spot {
/// \brief Formula visitor that cannot modify the formula.
///
/// Writing visitors is the prefered way
/// Writing visitors is the prefered way
/// to traverse a formula, since it doesn't
/// involve any cast.
///
/// If you want to modify the visited formula, inherit from
/// spot::ltl:visitor instead.
struct
const_visitor
struct
const_visitor
{
virtual
void
visit
(
const
atomic_prop
*
node
)
=
0
;
virtual
void
visit
(
const
constant
*
node
)
=
0
;
...
...
src/tgbaparse/tgbaparse.yy
View file @
d3a92618
...
...
@@ -46,7 +46,8 @@ tgba: accepting_decl lines | lines;
accepting_decl: ACC_DEF acc_decl ';'
lines:
/* At least one line. */
lines: line
| lines line
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment