<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -126,11 +126,13 @@ main = do
     forM_ files (parseAndSolve opts)
          where
          parseAndSolve opts path = do
+            parseStart &lt;- getCurrentTime
             cnf &lt;- parseCNF path
             putStrLn $ show (numVars cnf) ++ &quot; variables, &quot;
                        ++ show (numClauses cnf) ++ &quot; clauses&quot;
             Set.map seqList (clauses cnf)
-              `seq` putStrLn (&quot;Solving &quot; ++ path ++ &quot;...&quot;)
+              `seq` putStrLn (&quot;Solving &quot; ++ path ++ &quot; ...&quot;)
+            parseEnd &lt;- getCurrentTime
 
             startingTime &lt;- getCurrentTime
             let cfg = defaultConfig
@@ -141,7 +143,9 @@ main = do
             print solution
             print $ statTable stats `Tabular.combine`
                     Tabular.mkTable
-                     [[ WrapString &quot;Real time &quot;
+                     [[ WrapString &quot;Parsing time &quot;
+                      , WrapString $ show (diffUTCTime parseEnd parseStart) ]
+                     ,[ WrapString &quot;Real time &quot;
                       , WrapString $ show (diffUTCTime endingTime startingTime)]]
             putStr &quot;Verifying solution...&quot;
             case verify solution rt cnf of</diff>
      <filename>Main.hs</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>5fb879ce4b719cd718684be70c7493c670ef3816</id>
    </parent>
  </parents>
  <author>
    <name>Denis Bueno</name>
    <email>dbueno@gmail.com</email>
  </author>
  <url>http://github.com/dbueno/funsat/commit/a30106a98d2627348f87675b416569f308b2c854</url>
  <id>a30106a98d2627348f87675b416569f308b2c854</id>
  <committed-date>2009-04-17T20:25:22-07:00</committed-date>
  <authored-date>2009-04-17T20:25:22-07:00</authored-date>
  <message>Show parsing time after solving</message>
  <tree>f55f0d3c9c420ee23acaee922211d7d5f8f1f071</tree>
  <committer>
    <name>Denis Bueno</name>
    <email>dbueno@gmail.com</email>
  </committer>
</commit>
