Sindbad~EG File Manager
<p>The posted input files are now all mechanically generated from a master list of theorems. </p>
<p> The times shown in the following table are not the times required to find the proof, but rather
the maximum time allocated to Otter to find the proof. The time is shown only when it had to be longer than
the default, which was often 20 seconds when hints were used and 120 seconds when hints were not used.
</p><p>
For more information about our methodology see the <a href="http://www.michaelbeeson.com/research/FormalTarski/index.php"> top page of this project</a>.
</p>
<table width="750" border="1">
<col width="150"/>
<col width="175"/>
<col width = "30"/>
<col width = "50"/>
<col width = "30"/>
<col width="365"/>
<tr>
<th>Input File</th>
<th>Proof</th>
<th>Length</th>
<th>Strategy</th>
<th>Seconds</th>
<th>Commentary</th>
</tr>
<?php
require_once("TarskiTheorems.php");
require_once("FinalResults.php");
$theorems = TheoremsByChapter($Chapter);
foreach($theorems as $t)
{ $theorem_name = $t->name;
$r = $TarskiFinalResults[$theorem_name];
$strategies[$theorem_name] = "";
$times[$theorem_name] = "";
$lengths[$theorem_name] = "";
if(is_numeric($r))
{ $lengths[$theorem_name] = $r;
$strategies[$theorem_name] = "";
}
else if(is_array($r))
{ $lengths[$theorem_name] = $r[0];
if($r[1] == "subformula" || $r[1] == "hints" || $r[1] == "diagram")
$strategies[$theorem_name] = $r[1];
if($r[1] == "subformula" && count($r) > 2)
$times[$theorem_name] = $r[2];
foreach($r as $line)
{ if (strstr($line, "max_seconds"))
{ $eqn = explode('=', $line);
if(is_array($eqn) && count($eqn) > 1)
$times[$theorem_name] = $eqn[1];
}
}
}
}
foreach($theorems as $t)
{ $theorem_name = $t->name;
$infile = $t->name . ".in";
$length = $lengths[$theorem_name];
$proof_file = $t->name . ".prf";
$time = $times[$theorem_name];
$commentary = $descriptions[$theorem_name];
$strategy = $strategies[$theorem_name];
echo "<tr><td> <a href=\"InputFiles/$infile\"> $theorem_name </a> </td>";
echo "<td> <a href=\"Proofs/$proof_file\"> $proof_file</a></td>";
echo "<td> $length </td>";
echo "<td> $strategy </td>";
echo "<td> $time </td>";
echo "<td>$commentary </td>";
echo "</tr>";
}
?>
</table>
<p><a href="index.php?include=archive.php">Back to top of archive</a></p>
</div>
</div>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists