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:
Alexandre Duret-Lutz 2013-08-21 17:58:41 +02:00
parent 3076c3da4e
commit 983feb5290
15 changed files with 1553 additions and 1 deletions

17
bench/dtgbasat/rundbamin.pl Executable file
View 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");
}