[Swift-commit] r6968 - SwiftTutorials/CIC_2013-08-09/scripts

wilde at ci.uchicago.edu wilde at ci.uchicago.edu
Fri Aug 23 00:31:45 CDT 2013


Author: wilde
Date: 2013-08-23 00:31:45 -0500 (Fri, 23 Aug 2013)
New Revision: 6968

Modified:
   SwiftTutorials/CIC_2013-08-09/scripts/rensemble.swift
Log:
reformatted long lines

Modified: SwiftTutorials/CIC_2013-08-09/scripts/rensemble.swift
===================================================================
--- SwiftTutorials/CIC_2013-08-09/scripts/rensemble.swift	2013-08-23 04:21:15 UTC (rev 6967)
+++ SwiftTutorials/CIC_2013-08-09/scripts/rensemble.swift	2013-08-23 05:31:45 UTC (rev 6968)
@@ -5,9 +5,13 @@
 file simulation_prog <"app/simulate.sh">;
 file analysis_prog   <"app/stats.sh">;
 
-app (file out, file log) simulation (file prog, int timesteps, int sim_range, file bias_file, int scale, int sim_count)
+app (file out, file log) simulation
+    (file prog, int timesteps, int sim_range,
+     file bias_file, int scale, int sim_count)
 {
-  sh @filename(prog) "-t" timesteps "-r" sim_range "-B" @bias_file "-x" scale "-n" sim_count stdout=@out stderr=@log;
+  sh @prog "-t" timesteps "-r" sim_range "-B" @bias_file
+           "-x" scale "-n" sim_count
+           stdout=@out stderr=@log;
 }
 
 app (file out) analyze (file prog, file s[])




More information about the Swift-commit mailing list