From 4dd3c97e0cd54ae4b9fed6b68b9a65fe85824797 Mon Sep 17 00:00:00 2001 From: trevor_hansen Date: Sun, 22 Apr 2012 13:15:05 +0000 Subject: [PATCH] Change to code used for experiments. 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 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/util/measure.cpp b/src/util/measure.cpp index d406520..69fd51b 100644 --- a/src/util/measure.cpp +++ b/src/util/measure.cpp @@ -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; } -- 2.47.3