]> git.siccegge.de Git - master/cool-versuchung.git/commitdiff
Add in some whitespace
authorChristoph Egger <christoph@christoph-egger.org>
Wed, 20 Apr 2016 13:57:26 +0000 (15:57 +0200)
committerChristoph Egger <christoph@christoph-egger.org>
Wed, 20 Apr 2016 13:57:26 +0000 (15:57 +0200)
cool.py [changed mode: 0644->0755]

diff --git a/cool.py b/cool.py
old mode 100644 (file)
new mode 100755 (executable)
index 1b96352..d6b400c
--- a/cool.py
+++ b/cool.py
@@ -11,16 +11,20 @@ import os
 def natural_key(string_):
     return [int(s) if s.isdigit() else s for s in re.split(r'(\d+)', string_)]
 
+
 class SolverExperiment(Experiment):
     inputs = { 'formulas' : TarArchive() }
     outputs = { 'timing' : Directory() }
 
+
     def build_solver(self):
         pass
 
+
     def run_solver(self, formula):
         pass
-    
+
+
     def run(self):
         print("Building Solver ...")
         self.build_solver()
@@ -34,25 +38,29 @@ class SolverExperiment(Experiment):
                 break
 
 
+
 class CoolExperiment(SolverExperiment):
     inputs = { 'cool' : GitArchive() }
     outputs = {}
 
+
     def __init__(self):
         CoolExperiment.inputs.update(SolverExperiment.inputs)
         CoolExperiment.outputs.update(SolverExperiment.outputs)
         super(CoolExperiment, self).__init__()
-    
+
+
     def build_solver(self):
         with self.inputs.cool as path:
             shell("make")
 
+
     def run_solver(self, formula):
         with self.inputs.cool as path:
             shell("timeout 1001 ./coalg.native sat KD --verbose < %s" % formula)
-            
-                
-            
+
+
+
 if __name__ == "__main__":
     import sys
     experiment = CoolExperiment()