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
63e23c7a
Commit
63e23c7a
authored
Jul 08, 2003
by
Alexandre Duret-Lutz
Browse files
* src/ltlvisit/dump.cc: Strip useless spot::ltl:: prefixes.
parent
7690e9ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
63e23c7a
2003-07-08 Alexandre Duret-Lutz <aduret@src.lip6.fr>
* src/ltlvisit/dump.cc: Strip useless spot::ltl:: prefixes.
2003-07-07 Alexandre Duret-Lutz <aduret@src.lip6.fr>
First sketch of the GSPN wrapper objects.
...
...
src/ltlvisit/dump.cc
View file @
63e23c7a
...
...
@@ -8,7 +8,7 @@ namespace spot
namespace
ltl
{
class
dump_visitor
:
public
spot
::
ltl
::
const_visitor
class
dump_visitor
:
public
const_visitor
{
public:
dump_visitor
(
std
::
ostream
&
os
=
std
::
cout
)
...
...
@@ -22,19 +22,19 @@ namespace spot
}
void
visit
(
const
spot
::
ltl
::
atomic_prop
*
ap
)
visit
(
const
atomic_prop
*
ap
)
{
os_
<<
"AP("
<<
ap
->
name
()
<<
")"
;
}
void
visit
(
const
spot
::
ltl
::
constant
*
c
)
visit
(
const
constant
*
c
)
{
os_
<<
"constant("
<<
c
->
val_name
()
<<
")"
;
}
void
visit
(
const
spot
::
ltl
::
binop
*
bo
)
visit
(
const
binop
*
bo
)
{
os_
<<
"binop("
<<
bo
->
op_name
()
<<
", "
;
bo
->
first
()
->
accept
(
*
this
);
...
...
@@ -44,7 +44,7 @@ namespace spot
}
void
visit
(
const
spot
::
ltl
::
unop
*
uo
)
visit
(
const
unop
*
uo
)
{
os_
<<
"unop("
<<
uo
->
op_name
()
<<
", "
;
uo
->
child
()
->
accept
(
*
this
);
...
...
@@ -52,7 +52,7 @@ namespace spot
}
void
visit
(
const
spot
::
ltl
::
multop
*
mo
)
visit
(
const
multop
*
mo
)
{
os_
<<
"multop("
<<
mo
->
op_name
()
<<
", "
;
unsigned
max
=
mo
->
size
();
...
...
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