]> git.unchartedbackwaters.co.uk Git - francis/stp.git/commitdiff
Change to code used for experiments.
authortrevor_hansen <trevor_hansen@e59a4935-1847-0410-ae03-e826735625c1>
Sun, 22 Apr 2012 13:15:05 +0000 (13:15 +0000)
committertrevor_hansen <trevor_hansen@e59a4935-1847-0410-ae03-e826735625c1>
Sun, 22 Apr 2012 13:15:05 +0000 (13:15 +0000)
git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1649 e59a4935-1847-0410-ae03-e826735625c1

src/util/measure.cpp

index d4065202a6dc558ea23e71b98a555f892079b74f..69fd51b54d8a3c6af5b97120087f68a308cd1f1b 100644 (file)
@@ -193,8 +193,7 @@ go(Kind k, Result
 void
 work(int p)
 {
-  out << "\\begin{table*}[t]" << endl;
-  //out << "\\small" << endl;
+  out << "\\begin{table}[t]" << endl;
   out << "\\begin{center}" << endl;
   out << "\\begin{tabular}{|l| r|r|r|r|r|r|r| }" << endl;
   out << "\\hline" << endl;
@@ -218,9 +217,8 @@ work(int p)
   out << "\\caption{Comparison of unit propagation and bit-blasting at "<<  p <<  "\\%. ";
   out << iterations << " iterations at " << bits << " bits.}" << endl;
   out << "\\end{center}" << endl;
-  out << "\\end{table*}" << endl;
-
-}
+  out << "\\end{table}" << endl;
+  }
 
 int
 main()
@@ -228,12 +226,14 @@ main()
   mgr = new STPMgr;
   Cpp_interface interface(*mgr);
 
+  out << "\\begin{subtables}" << endl;
   work(1);
   work(5);
   work(50);
   work(95);
+  out << "\\end{subtables}" << endl;
 
-  cerr << "% Iterations:" << iterations << " bit-width:" << bits << endl;
+  out << "% Iterations:" << iterations << " bit-width:" << bits << endl;
 
 }