added short comment for discussion...

This commit is contained in:
Philip Eisenlohr 2011-11-17 18:39:09 +00:00
parent ae73172ba7
commit ac8b5f0708
1 changed files with 2 additions and 2 deletions

View File

@ -71,9 +71,9 @@ class DAMASK_TEST():
file=open('../postprocessing.cmd','r')
postproc=file.readlines()
file.close()
for cmd in postproc:
for cmd in postproc: # PHILIP: suggestion to just execute the script "postprocessing" directly within a shell, i.e. os.system('../postprocessing')
print(cmd)
os.system(cmd)
os.system(cmd) # PHILIP: reason is that for loops and the like get broken with line by line execution from here...
def compare_to_reference(self,tol=1e-5):
import string