Add benchmark for our DTGBA SAT-minimization.
* bench/dtgbasat/: New directory. * bench/Makefile.am: New file. * configure.ac, README: Adjust.
This commit is contained in:
parent
3076c3da4e
commit
983feb5290
15 changed files with 1553 additions and 1 deletions
17
bench/dtgbasat/rundbamin.pl
Executable file
17
bench/dtgbasat/rundbamin.pl
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/perl -w
|
||||
|
||||
use strict;
|
||||
use Time::HiRes;
|
||||
|
||||
my $start = Time::HiRes::gettimeofday();
|
||||
my $res = `@ARGV` || die;
|
||||
my $end = Time::HiRes::gettimeofday();
|
||||
|
||||
if ($res =~ /States:\s*(\d+)\w*$/som)
|
||||
{
|
||||
printf("%d, %f\n", $1, $end - $start);
|
||||
}
|
||||
else
|
||||
{
|
||||
printf("-, -\n");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue