Skip to content
GitLab
Menu
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
0222c5e1
Commit
0222c5e1
authored
Dec 10, 2004
by
Denis Poitrenaud
Browse files
* src/misc/timer.cc, src/tgbatest/randtgba.cc: Format the statistics.
parent
0fc279c5
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
0222c5e1
2004-12-10 Denis Poitrenaud <Denis.Poitrenaud@lip6.fr>
* src/misc/timer.cc, src/tgbatest/randtgba.cc: Format the statistics.
2004-12-10 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbatest/emptchkr.test: Tune the "big degeneralized" test
...
...
src/misc/timer.cc
View file @
0222c5e1
...
...
@@ -29,6 +29,9 @@ namespace spot
std
::
ostream
&
timer_map
::
print
(
std
::
ostream
&
os
)
const
{
std
::
ios
::
fmtflags
old
=
std
::
cout
.
flags
();
std
::
cout
<<
std
::
right
<<
std
::
fixed
<<
std
::
setprecision
(
1
);
time_info
total
;
for
(
tm_type
::
const_iterator
i
=
tm
.
begin
();
i
!=
tm
.
end
();
++
i
)
{
...
...
@@ -37,47 +40,49 @@ namespace spot
}
clock_t
grand_total
=
total
.
utime
+
total
.
stime
;
os
<<
std
::
setw
(
3
3
)
<<
""
<<
"| user time
|
sys. time
|
total |"
os
<<
std
::
setw
(
2
3
)
<<
""
<<
"|
user time
|
sys. time
|
total
|"
<<
std
::
endl
<<
std
::
setw
(
3
3
)
<<
"name "
<<
"| ticks % | tic
s
% | tic
s
% | n"
<<
std
::
setw
(
2
3
)
<<
"name "
<<
"| ticks
% | tic
ks
% | tic
ks
% | n"
<<
std
::
endl
<<
std
::
setw
(
79
)
<<
std
::
setfill
(
'-'
)
<<
""
<<
std
::
setfill
(
' '
)
<<
std
::
endl
;
for
(
tm_type
::
const_iterator
i
=
tm
.
begin
();
i
!=
tm
.
end
();
++
i
)
{
const
spot
::
timer
&
t
=
i
->
second
.
first
;
os
<<
std
::
setw
(
3
2
)
<<
i
->
first
<<
" |"
<<
std
::
setw
(
6
)
<<
t
.
utime
()
<<
std
::
setw
(
5
)
<<
(
total
.
utime
?
100.0
*
t
.
utime
()
/
total
.
utime
:
0
)
os
<<
std
::
setw
(
2
2
)
<<
i
->
first
<<
" |"
<<
std
::
setw
(
6
)
<<
t
.
utime
()
<<
" "
<<
std
::
setw
(
8
)
<<
(
total
.
utime
?
100.0
*
t
.
utime
()
/
total
.
utime
:
0
.
)
<<
" |"
<<
std
::
setw
(
6
)
<<
t
.
stime
()
<<
std
::
setw
(
5
)
<<
(
total
.
stime
?
100.0
*
t
.
stime
()
/
total
.
stime
:
0
)
<<
std
::
setw
(
6
)
<<
t
.
stime
()
<<
" "
<<
std
::
setw
(
8
)
<<
(
total
.
stime
?
100.0
*
t
.
stime
()
/
total
.
stime
:
0
.
)
<<
" |"
<<
std
::
setw
(
6
)
<<
t
.
utime
()
+
t
.
stime
()
<<
std
::
setw
(
5
)
<<
(
grand_total
?
<<
std
::
setw
(
6
)
<<
t
.
utime
()
+
t
.
stime
()
<<
" "
<<
std
::
setw
(
8
)
<<
(
grand_total
?
(
100.0
*
(
t
.
utime
()
+
t
.
stime
())
/
grand_total
)
:
0
)
grand_total
)
:
0
.
)
<<
" |"
<<
std
::
setw
(
4
)
<<
i
->
second
.
second
<<
std
::
endl
;
}
os
<<
std
::
setw
(
79
)
<<
std
::
setfill
(
'-'
)
<<
""
<<
std
::
setfill
(
' '
)
<<
std
::
endl
<<
std
::
setw
(
3
2
)
<<
"TOTAL"
<<
" |"
<<
std
::
setw
(
6
)
<<
total
.
utime
<<
std
::
setw
(
5
)
<<
100
<<
std
::
setw
(
2
2
)
<<
"TOTAL"
<<
" |"
<<
std
::
setw
(
6
)
<<
total
.
utime
<<
" "
<<
std
::
setw
(
8
)
<<
100
.
<<
" |"
<<
std
::
setw
(
6
)
<<
total
.
stime
<<
std
::
setw
(
5
)
<<
100
<<
std
::
setw
(
6
)
<<
total
.
stime
<<
" "
<<
std
::
setw
(
8
)
<<
100
.
<<
" |"
<<
std
::
setw
(
6
)
<<
grand_total
<<
std
::
setw
(
5
)
<<
100
<<
std
::
setw
(
6
)
<<
grand_total
<<
" "
<<
std
::
setw
(
8
)
<<
100
.
<<
" |"
<<
std
::
endl
;
std
::
cout
<<
std
::
setiosflags
(
old
);
return
os
;
}
...
...
src/tgbatest/randtgba.cc
View file @
0222c5e1
...
...
@@ -91,11 +91,9 @@ ec_algo ec_algos[] =
{
"couvreur99_shy-"
,
couvreur99_shy_minus_cons
,
0
,
-
1U
,
true
},
{
"couvreur99_shy"
,
couvreur99_shy_cons
,
0
,
-
1U
,
true
},
{
"explicit_magic_search"
,
spot
::
explicit_magic_search
,
0
,
1
,
true
},
{
"bit_state_hashing_magic_search"
,
bsh_ms_cons
,
0
,
1
,
false
},
{
"bsh_magic_search"
,
bsh_ms_cons
,
0
,
1
,
false
},
{
"explicit_se05"
,
spot
::
explicit_se05_search
,
0
,
1
,
true
},
{
"bit_state_hashing_se05"
,
bsh_se05_cons
,
0
,
1
,
false
},
{
"bsh_se05"
,
bsh_se05_cons
,
0
,
1
,
false
},
{
"explicit_gv04"
,
spot
::
explicit_gv04_check
,
0
,
1
,
true
},
{
"explicit_tau03"
,
spot
::
explicit_tau03_search
,
1
,
-
1U
,
true
},
{
"explicit_tau03_opt"
,
spot
::
explicit_tau03_opt_search
,
0
,
-
1U
,
true
},
...
...
@@ -276,62 +274,69 @@ ar_stats_type mar_stats; // ... about minimized accepting runs.
void
print_ar_stats
(
ar_stats_type
&
ar_stats
)
{
std
::
cout
<<
std
::
setw
(
32
)
<<
""
<<
" | prefix | cycle |"
<<
std
::
endl
<<
std
::
setw
(
32
)
<<
"algorithm"
<<
" | min < mean < max | min < mean < max | n "
<<
std
::
endl
<<
std
::
setw
(
79
)
<<
std
::
setfill
(
'-'
)
<<
""
<<
std
::
setfill
(
' '
)
<<
std
::
endl
<<
std
::
setprecision
(
3
);
for
(
ar_stats_type
::
const_iterator
i
=
ar_stats
.
begin
();
i
!=
ar_stats
.
end
();
++
i
)
std
::
cout
<<
std
::
setw
(
32
)
<<
i
->
first
<<
" |"
<<
std
::
setw
(
5
)
<<
i
->
second
.
min_prefix
<<
" "
<<
std
::
setw
(
6
)
<<
static_cast
<
float
>
(
i
->
second
.
tot_prefix
)
/
i
->
second
.
n
<<
" "
<<
std
::
setw
(
5
)
<<
i
->
second
.
max_prefix
<<
" |"
<<
std
::
setw
(
5
)
<<
i
->
second
.
min_cycle
<<
" "
<<
std
::
setw
(
6
)
<<
static_cast
<
float
>
(
i
->
second
.
tot_cycle
)
/
i
->
second
.
n
<<
" "
<<
std
::
setw
(
5
)
<<
i
->
second
.
max_cycle
<<
" |"
<<
std
::
setw
(
5
)
<<
i
->
second
.
n
<<
std
::
endl
;
std
::
cout
<<
std
::
setw
(
79
)
<<
std
::
setfill
(
'-'
)
<<
""
<<
std
::
setfill
(
' '
)
<<
std
::
endl
<<
std
::
setw
(
32
)
<<
""
<<
" | runs | total |"
<<
std
::
endl
<<
std
::
setw
(
32
)
<<
"algorithm"
<<
" | min < mean < max | pre. cyc. runs | n "
<<
std
::
endl
<<
std
::
setw
(
79
)
<<
std
::
setfill
(
'-'
)
<<
""
<<
std
::
setfill
(
' '
)
<<
std
::
endl
;
for
(
ar_stats_type
::
const_iterator
i
=
ar_stats
.
begin
();
i
!=
ar_stats
.
end
();
++
i
)
std
::
cout
<<
std
::
setw
(
32
)
<<
i
->
first
<<
" |"
<<
std
::
setw
(
5
)
<<
i
->
second
.
min_run
<<
" "
<<
std
::
setw
(
6
)
<<
static_cast
<
float
>
(
i
->
second
.
tot_prefix
+
i
->
second
.
tot_cycle
)
/
i
->
second
.
n
<<
" "
<<
std
::
setw
(
5
)
<<
i
->
second
.
max_run
<<
" |"
<<
std
::
setw
(
5
)
<<
i
->
second
.
tot_prefix
<<
" "
<<
std
::
setw
(
5
)
<<
i
->
second
.
tot_cycle
<<
" "
<<
std
::
setw
(
5
)
<<
i
->
second
.
tot_prefix
+
i
->
second
.
tot_cycle
<<
" |"
<<
std
::
setw
(
5
)
<<
i
->
second
.
n
<<
std
::
endl
;
std
::
ios
::
fmtflags
old
=
std
::
cout
.
flags
();
std
::
cout
<<
std
::
right
<<
std
::
fixed
<<
std
::
setprecision
(
1
);
std
::
cout
<<
std
::
setw
(
22
)
<<
""
<<
" | prefix | cycle |"
<<
std
::
endl
<<
std
::
setw
(
22
)
<<
"algorithm"
<<
" | min < mean < max | min < mean < max | n "
<<
std
::
endl
<<
std
::
setw
(
79
)
<<
std
::
setfill
(
'-'
)
<<
""
<<
std
::
setfill
(
' '
)
<<
std
::
endl
;
for
(
ar_stats_type
::
const_iterator
i
=
ar_stats
.
begin
();
i
!=
ar_stats
.
end
();
++
i
)
std
::
cout
<<
std
::
setw
(
22
)
<<
i
->
first
<<
" |"
<<
std
::
setw
(
6
)
<<
i
->
second
.
min_prefix
<<
" "
<<
std
::
setw
(
8
)
<<
static_cast
<
float
>
(
i
->
second
.
tot_prefix
)
/
i
->
second
.
n
<<
" "
<<
std
::
setw
(
6
)
<<
i
->
second
.
max_prefix
<<
" |"
<<
std
::
setw
(
6
)
<<
i
->
second
.
min_cycle
<<
" "
<<
std
::
setw
(
8
)
<<
static_cast
<
float
>
(
i
->
second
.
tot_cycle
)
/
i
->
second
.
n
<<
" "
<<
std
::
setw
(
6
)
<<
i
->
second
.
max_cycle
<<
" |"
<<
std
::
setw
(
4
)
<<
i
->
second
.
n
<<
std
::
endl
;
std
::
cout
<<
std
::
setw
(
79
)
<<
std
::
setfill
(
'-'
)
<<
""
<<
std
::
setfill
(
' '
)
<<
std
::
endl
<<
std
::
setw
(
22
)
<<
""
<<
" | runs | total |"
<<
std
::
endl
<<
std
::
setw
(
22
)
<<
"algorithm"
<<
" | min < mean < max | pre. cyc. runs | n "
<<
std
::
endl
<<
std
::
setw
(
79
)
<<
std
::
setfill
(
'-'
)
<<
""
<<
std
::
setfill
(
' '
)
<<
std
::
endl
;
for
(
ar_stats_type
::
const_iterator
i
=
ar_stats
.
begin
();
i
!=
ar_stats
.
end
();
++
i
)
std
::
cout
<<
std
::
setw
(
22
)
<<
i
->
first
<<
" |"
<<
std
::
setw
(
6
)
<<
i
->
second
.
min_run
<<
" "
<<
std
::
setw
(
8
)
<<
static_cast
<
float
>
(
i
->
second
.
tot_prefix
+
i
->
second
.
tot_cycle
)
/
i
->
second
.
n
<<
" "
<<
std
::
setw
(
6
)
<<
i
->
second
.
max_run
<<
" |"
<<
std
::
setw
(
6
)
<<
i
->
second
.
tot_prefix
<<
" "
<<
std
::
setw
(
6
)
<<
i
->
second
.
tot_cycle
<<
" "
<<
std
::
setw
(
8
)
<<
i
->
second
.
tot_prefix
+
i
->
second
.
tot_cycle
<<
" |"
<<
std
::
setw
(
4
)
<<
i
->
second
.
n
<<
std
::
endl
;
std
::
cout
<<
std
::
setiosflags
(
old
);
}
int
...
...
@@ -629,56 +634,62 @@ main(int argc, char** argv)
if
(
!
ec_stats
.
empty
())
{
std
::
ios
::
fmtflags
old
=
std
::
cout
.
flags
();
std
::
cout
<<
std
::
right
<<
std
::
fixed
<<
std
::
setprecision
(
1
);
std
::
cout
<<
"Statistics about emptiness checkers:"
<<
std
::
endl
;
std
::
cout
<<
std
::
setw
(
3
2
)
<<
""
<<
" | states | transitions |"
<<
std
::
endl
<<
std
::
setw
(
3
2
)
<<
"algorithm"
<<
" | min < mean < max | min < mean < max | n "
std
::
cout
<<
std
::
setw
(
2
2
)
<<
""
<<
" |
states
|
transitions
|"
<<
std
::
endl
<<
std
::
setw
(
2
2
)
<<
"algorithm"
<<
" |
min
< mean
< max |
min
< mean
< max | n "
<<
std
::
endl
<<
std
::
setw
(
79
)
<<
std
::
setfill
(
'-'
)
<<
""
<<
std
::
setfill
(
' '
)
<<
std
::
endl
<<
std
::
setprecision
(
3
)
;
<<
std
::
endl
;
for
(
ec_stats_type
::
const_iterator
i
=
ec_stats
.
begin
();
i
!=
ec_stats
.
end
();
++
i
)
std
::
cout
<<
std
::
setw
(
3
2
)
<<
i
->
first
<<
" |"
<<
std
::
setw
(
5
)
<<
i
->
second
.
min_states
std
::
cout
<<
std
::
setw
(
2
2
)
<<
i
->
first
<<
" |"
<<
std
::
setw
(
6
)
<<
i
->
second
.
min_states
<<
" "
<<
std
::
setw
(
6
)
<<
std
::
setw
(
8
)
<<
static_cast
<
float
>
(
i
->
second
.
tot_states
)
/
i
->
second
.
n
<<
" "
<<
std
::
setw
(
5
)
<<
i
->
second
.
max_states
<<
std
::
setw
(
6
)
<<
i
->
second
.
max_states
<<
" |"
<<
std
::
setw
(
5
)
<<
i
->
second
.
min_transitions
<<
std
::
setw
(
6
)
<<
i
->
second
.
min_transitions
<<
" "
<<
std
::
setw
(
6
)
<<
std
::
setw
(
8
)
<<
static_cast
<
float
>
(
i
->
second
.
tot_transitions
)
/
i
->
second
.
n
<<
" "
<<
std
::
setw
(
5
)
<<
i
->
second
.
max_transitions
<<
std
::
setw
(
6
)
<<
i
->
second
.
max_transitions
<<
" |"
<<
std
::
setw
(
5
)
<<
i
->
second
.
n
<<
std
::
setw
(
4
)
<<
i
->
second
.
n
<<
std
::
endl
;
std
::
cout
<<
std
::
setw
(
79
)
<<
std
::
setfill
(
'-'
)
<<
""
<<
std
::
setfill
(
' '
)
<<
std
::
endl
<<
std
::
setw
(
32
)
<<
""
<<
" | maximal depth |"
<<
std
::
endl
<<
std
::
setw
(
32
)
<<
"algorithm"
<<
" | min < mean < max | n "
<<
std
::
setw
(
22
)
<<
""
<<
" | maximal depth |"
<<
std
::
endl
<<
std
::
setw
(
22
)
<<
"algorithm"
<<
" | min < mean < max | n "
<<
std
::
endl
<<
std
::
setw
(
59
)
<<
std
::
setfill
(
'-'
)
<<
""
<<
std
::
setfill
(
' '
)
<<
std
::
endl
;
for
(
ec_stats_type
::
const_iterator
i
=
ec_stats
.
begin
();
i
!=
ec_stats
.
end
();
++
i
)
std
::
cout
<<
std
::
setw
(
3
2
)
<<
i
->
first
<<
" |"
<<
std
::
setw
(
5
)
std
::
cout
<<
std
::
setw
(
2
2
)
<<
i
->
first
<<
" |"
<<
std
::
setw
(
6
)
<<
i
->
second
.
min_max_depth
<<
" "
<<
std
::
setw
(
6
)
<<
std
::
setw
(
8
)
<<
static_cast
<
float
>
(
i
->
second
.
tot_max_depth
)
/
i
->
second
.
n
<<
" "
<<
std
::
setw
(
5
)
<<
std
::
setw
(
6
)
<<
i
->
second
.
max_max_depth
<<
" |"
<<
std
::
setw
(
5
)
<<
i
->
second
.
n
<<
std
::
setw
(
4
)
<<
i
->
second
.
n
<<
std
::
endl
;
std
::
cout
<<
std
::
setiosflags
(
old
);
}
if
(
!
ar_stats
.
empty
())
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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