Commit 344f1bff authored by Georgios Dagkakis's avatar Georgios Dagkakis

print also running time

parent b27e5db6
...@@ -3,6 +3,9 @@ from dream.simulation.Globals import runSimulation, G ...@@ -3,6 +3,9 @@ from dream.simulation.Globals import runSimulation, G
import random import random
from random import Random from random import Random
Rnd = Random(3) Rnd = Random(3)
import time
start=time.time()
# transition probabilities # transition probabilities
p=0.01 p=0.01
...@@ -205,4 +208,5 @@ for M in [M1,M2,M3]: ...@@ -205,4 +208,5 @@ for M in [M1,M2,M3]:
G=sum(M.GoodExits)/float(len(M.GoodExits)) G=sum(M.GoodExits)/float(len(M.GoodExits))
print 'PRg'+M.id,'=',G/float(maxSimTime) print 'PRg'+M.id,'=',G/float(maxSimTime)
print "running time=",time.time()-start
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment