* bench/ltl2tgba/lbtt2csv.pl: Fix a bug when using big.log.

This commit is contained in:
Thomas Badie 2012-08-20 16:19:47 +02:00 committed by Alexandre Duret-Lutz
parent a0cce10512
commit bd9e42dd68

View file

@ -94,10 +94,14 @@ sub work_on_whole_round($)
{
my ($round) = @_;
$round =~ s/ parse tree.*?\n//ms;
$round =~ /.*?\n\s+formula:\s+(.*?)\n/ms;
my $formula = $1;
$round = $'; #'
$round =~ s{\n\n(.*?)(?=\n\n)}<
work_on_algorithm ($1, $formula);
>gse;