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
37ece2b8
Commit
37ece2b8
authored
Sep 29, 2014
by
Alexandre Duret-Lutz
Browse files
* src/graphtest/tgbagraph.cc: Add parentheses to please gcc-snapshot.
parent
8c2efa66
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/graphtest/tgbagraph.cc
View file @
37ece2b8
...
...
@@ -45,11 +45,11 @@ void f1()
auto
s3
=
tg
->
new_state
();
tg
->
new_transition
(
s1
,
s1
,
bddfalse
,
bddfalse
);
tg
->
new_transition
(
s1
,
s2
,
p1
,
bddfalse
);
tg
->
new_transition
(
s1
,
s3
,
p2
,
!
a1
&
a2
);
tg
->
new_transition
(
s1
,
s3
,
p2
,
(
!
a1
)
&
a2
);
tg
->
new_transition
(
s2
,
s3
,
p1
&
p2
,
a1
&
!
a2
);
tg
->
new_transition
(
s3
,
s1
,
p1
|
p2
,
(
!
a1
&
a2
)
|
(
a1
&
!
a2
));
tg
->
new_transition
(
s3
,
s1
,
p1
|
p2
,
(
(
!
a1
)
&
a2
)
|
(
a1
&
!
a2
));
tg
->
new_transition
(
s3
,
s2
,
p1
>>
p2
,
bddfalse
);
tg
->
new_transition
(
s3
,
s3
,
bddtrue
,
(
!
a1
&
a2
)
|
(
a1
&
!
a2
));
tg
->
new_transition
(
s3
,
s3
,
bddtrue
,
(
(
!
a1
)
&
a2
)
|
(
a1
&
!
a2
));
spot
::
dotty_reachable
(
std
::
cout
,
tg
);
...
...
@@ -69,9 +69,9 @@ void f1()
spot
::
dotty_reachable
(
std
::
cout
,
tg
);
}
tg
->
new_transition
(
s3
,
s1
,
p1
|
p2
,
(
!
a1
&
a2
)
|
(
a1
&
!
a2
));
tg
->
new_transition
(
s3
,
s1
,
p1
|
p2
,
(
(
!
a1
)
&
a2
)
|
(
a1
&
!
a2
));
tg
->
new_transition
(
s3
,
s2
,
p1
>>
p2
,
bddfalse
);
tg
->
new_transition
(
s3
,
s1
,
bddtrue
,
(
!
a1
&
a2
)
|
(
a1
&
!
a2
));
tg
->
new_transition
(
s3
,
s1
,
bddtrue
,
(
(
!
a1
)
&
a2
)
|
(
a1
&
!
a2
));
std
::
cerr
<<
tg
->
num_transitions
()
<<
'\n'
;
assert
(
tg
->
num_transitions
()
==
7
);
...
...
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