[Assorted-commits] SF.net SVN: assorted: [334] hash-join/trunk/tools
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-07 01:35:34
|
Revision: 334 http://assorted.svn.sourceforge.net/assorted/?rev=334&view=rev Author: yangzhang Date: 2008-02-06 17:35:37 -0800 (Wed, 06 Feb 2008) Log Message: ----------- fixed graphs Modified Paths: -------------- hash-join/trunk/tools/LogProc.scala hash-join/trunk/tools/Makefile Modified: hash-join/trunk/tools/LogProc.scala =================================================================== --- hash-join/trunk/tools/LogProc.scala 2008-02-07 00:50:59 UTC (rev 333) +++ hash-join/trunk/tools/LogProc.scala 2008-02-07 01:35:37 UTC (rev 334) @@ -77,7 +77,7 @@ // Instruct gnuplot. def f(s:String) = { { - for ((field,_) <- map) yield ( + for ((field,_) <- plotData) yield ( "'" + camelToHyphen(field) + s + ".dat" + "' with linespoints title '" + fieldNameToLabel(field) + "'" ) } mkString ", " Modified: hash-join/trunk/tools/Makefile =================================================================== --- hash-join/trunk/tools/Makefile 2008-02-07 00:50:59 UTC (rev 333) +++ hash-join/trunk/tools/Makefile 2008-02-07 01:35:37 UTC (rev 334) @@ -16,7 +16,7 @@ scala -cp out DbPrep proc: out/LogProc.class - scala -cp out LogProc log + scala -cp out LogProc log-opt clean: rm -rf out This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |