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
b4d0b9ee
Commit
b4d0b9ee
authored
Dec 17, 2013
by
Alexandre Duret-Lutz
Browse files
sat: more debug.
* src/tgbaalgos/dtbasat.cc, src/tgbaalgos/dtgbasat.cc: More debuging code.
parent
9c98975c
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/tgbaalgos/dtbasat.cc
View file @
b4d0b9ee
...
...
@@ -18,6 +18,7 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include
<iostream>
#include
<fstream>
#include
<sstream>
#include
"dtbasat.hh"
#include
"reachiter.hh"
...
...
@@ -901,6 +902,8 @@ namespace spot
satdict
.
prodid
.
begin
();
pit
!=
satdict
.
prodid
.
end
();
++
pit
)
if
(
positive
.
find
(
pit
->
second
)
!=
positive
.
end
())
dout
<<
pit
->
second
<<
"
\t
"
<<
pit
->
first
<<
"
\n
"
;
else
dout
<<
-
pit
->
second
<<
"
\t
¬"
<<
pit
->
first
<<
"C
\n
"
;
dout
<<
"--- pathid_cand variables ---
\n
"
;
for
(
std
::
map
<
path
,
int
>::
const_iterator
pit
=
...
...
@@ -908,6 +911,9 @@ namespace spot
pit
!=
satdict
.
pathid_cand
.
end
();
++
pit
)
if
(
positive
.
find
(
pit
->
second
)
!=
positive
.
end
())
dout
<<
pit
->
second
<<
"
\t
"
<<
pit
->
first
<<
"C
\n
"
;
else
dout
<<
-
pit
->
second
<<
"
\t
¬"
<<
pit
->
first
<<
"C
\n
"
;
dout
<<
"--- pathid_ref variables ---
\n
"
;
for
(
std
::
map
<
path
,
int
>::
const_iterator
pit
=
...
...
@@ -915,6 +921,18 @@ namespace spot
pit
!=
satdict
.
pathid_ref
.
end
();
++
pit
)
if
(
positive
.
find
(
pit
->
second
)
!=
positive
.
end
())
dout
<<
pit
->
second
<<
"
\t
"
<<
pit
->
first
<<
"R
\n
"
;
else
dout
<<
-
pit
->
second
<<
"
\t
¬"
<<
pit
->
first
<<
"C
\n
"
;
dout
<<
"--- pathcand variables ---
\n
"
;
for
(
std
::
map
<
state_pair
,
int
>::
const_iterator
pit
=
satdict
.
pathcand
.
begin
();
pit
!=
satdict
.
pathcand
.
end
();
++
pit
)
if
(
positive
.
find
(
pit
->
second
)
!=
positive
.
end
())
dout
<<
pit
->
second
<<
"
\t
"
<<
pit
->
first
<<
"C
\n
"
;
else
dout
<<
-
pit
->
second
<<
"
\t
¬"
<<
pit
->
first
<<
"C
\n
"
;
#endif
a
->
merge_transitions
();
...
...
src/tgbaalgos/dtgbasat.cc
View file @
b4d0b9ee
...
...
@@ -18,6 +18,7 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include
<iostream>
#include
<fstream>
#include
<sstream>
#include
"dtgbasat.hh"
#include
"reachiter.hh"
...
...
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