Skip to content
Snippets Groups Projects
Commit c7567002 authored by Yannick Crutzen's avatar Yannick Crutzen
Browse files

correct comments

parent 11f000e5
No related branches found
No related tags found
No related merge requests found
......@@ -294,7 +294,7 @@ def execScilabScript(scilabExe, scilabCmd, sciFilePath=None, verb=True):
cmd = '"%s" -nw -e "%s" > "%s" 2>&1' % (scilabExe, sciCmd, logFile)
if verb :
print ('subprocess command : ', cmd)
# acquire matlock
# acquire sciLock
tim0 = time.time()
sciLock.acquire()
try :
......@@ -307,7 +307,7 @@ def execScilabScript(scilabExe, scilabCmd, sciFilePath=None, verb=True):
# fonction objectif doit retourner un double
print ("problem during Scilab run")
a = 0.0
# release matlock
# release sciLock
sciLock.release()
print (" Scilab exec time = %d sec" %(time.time()-tim0))
return a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment