]> matita.cs.unibo.it Git - helm.git/commitdiff
fix
authorEnrico Tassi <enrico.tassi@inria.fr>
Thu, 22 Dec 2005 10:26:21 +0000 (10:26 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Thu, 22 Dec 2005 10:26:21 +0000 (10:26 +0000)
helm/matita/scripts/public_html/bench.php
helm/matita/scripts/public_html/style.css

index 2f3fe5da450771e1b6b23950aa6c5b95b562c458..dc57bab6daf0ca396dc6a2414040bdd413bedeb8 100644 (file)
@@ -9,10 +9,10 @@ $limits = array("20","50","100");
   
 $quey_all = urlencode("Whole content:@@@select * from bench***");
 $query_fail = urlencode(
-  "Number of failures:@@@" .
+  "Number of failures@@@" .
   "select mark, count(distinct test) as fail_no from bench where result = 'fail' group by mark order by mark desc***"
   . "###" . 
-  "Tests failed:@@@" .
+  "Tests failed@@@" .
   "select distinct mark, test, result from bench where result = 'fail' order by mark desc***" 
 );
 $query_gc = urlencode(
@@ -27,9 +27,9 @@ $query_gc = urlencode(
   
 );
 $query_auto = urlencode(
-  "Auto (with GC):@@@select mark, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as time from bench where test='auto.ma' and options = 'gc-on' group by mark order by mark desc***"
+  "Auto (with GC)@@@select mark, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as time from bench where test='auto.ma' and options = 'gc-on' group by mark order by mark desc***"
   . "###" . 
-  "Auto (without GC):@@@select mark, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as time from bench where test='auto.ma' and options = 'gc-off' group by mark order by mark desc***"
+  "Auto (without GC)@@@select mark, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time))) as time from bench where test='auto.ma' and options = 'gc-off' group by mark order by mark desc***"
   #  . "###" . 
   # "GC overhead@@@select bench.mark, SEC_TO_TIME(SUM(TIME_TO_SEC(bench.time)) - SUM(TIME_TO_SEC(bench1.time))) as gc_hoverhead from bench, bench as bench1 where bench.mark = bench1.mark and bench.test = bench1.test and bench.options = 'gc-on' and bench1.options = 'gc-off' and bench.compilation = bench1.compilation and bench.test = 'auto.ma' group by mark"
 );
index 093af1bb7cc8e44d1f2414c3be911e3435d4d1c5..40a5863138ba4fb6f2da4ddac8a7df022bf54ca3 100644 (file)
@@ -3,6 +3,18 @@ body {
   font-size: 12pt;
 }
 
+h1 {
+  text-align: center;
+  background-color: #87CEFA;
+}
+
+h2 {
+  margin-right: auto;
+  border-bottom-color: #87CEFA;
+  border-bottom-style: solid;
+  border-bottom-width: 2px;
+}
+
 a, .button {
   border: 2px outset gray;
   text-decoration: none;