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
1c2450f6
Commit
1c2450f6
authored
Aug 17, 2011
by
Alexandre Duret-Lutz
Browse files
Please GCC 4.6.
* src/tgbatest/complementation.cc (check, automaton): Remove these unused variables.
parent
03aabf9a
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
1c2450f6
2011-08-17 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Please GCC 4.6.
* src/tgbatest/complementation.cc (check, automaton): Remove
these unused variables.
2011-08-17 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Fix a nondeterministic behavior of the degeneralization algorithm.
...
...
src/tgbatest/complementation.cc
View file @
1c2450f6
// Copyright (C) 2008, 2009, 2010 Laboratoire de Recherche et
Développement
// de l'Epita (LRDE).
// Copyright (C) 2008, 2009, 2010
, 2011
Laboratoire de Recherche et
//
Développement
de l'Epita (LRDE).
//
// This file is part of Spot, a model checking library.
//
...
...
@@ -57,11 +57,10 @@ int main(int argc, char* argv[])
char
*
file
=
0
;
bool
print_safra
=
false
;
bool
print_automaton
=
false
;
bool
check
=
false
;
//
bool check = false;
int
return_value
=
0
;
bool
stats
=
false
;
bool
formula
=
false
;
bool
automaton
=
false
;
bool
safra
=
false
;
bool
print_formula
=
false
;
...
...
@@ -78,7 +77,7 @@ int main(int argc, char* argv[])
if
(
strcmp
(
argv
[
i
]
+
1
,
"astat"
)
==
0
)
{
stats
=
true
;
automaton
=
tru
e
;
formula
=
fals
e
;
continue
;
}
...
...
@@ -98,7 +97,8 @@ int main(int argc, char* argv[])
case
'a'
:
print_automaton
=
true
;
break
;
case
'f'
:
check
=
true
;
break
;
//check = true;
break
;
case
'p'
:
print_formula
=
true
;
break
;
default:
...
...
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