-
Notifications
You must be signed in to change notification settings - Fork 4
/
stats_temps.py
43 lines (37 loc) · 1.35 KB
/
stats_temps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import time
import json
from Cube import *
from algo import algo_cfop
from lire_entree import lecture_cube
from stats import *
"""
Génération de stats sur le temps
d'éxécution
"""
JEU_TEST = 'tests/samples/liste-sample.json'
DEFAULT_CUBE = 'OGRBWYBGBGYYOYOWOWGRYOOOBGBRRYRBWWWRBWYGROWGRYBRGYWBOG'
# Renvois le temps d'éxecution du cube test donné dans poqb.py
def getTimeDefaultCube():
tmps1=time.clock()
b,c = lecture_cube(DEFAULT_CUBE)
c,mouv = algo_cfop(c) # on fais l'algo
tmps2=time.clock()
return tmps2-tmps1
# Renvois dans une liste le temps d'éxecution des 11400 cubes
def getTimes11400Cubes():
liste = []
with open(JEU_TEST) as data_file: #on parse le jeu de test JSON
data = json.load(data_file)
tests = data["cubes"]
for test in tests: # on parcours tout les cubes
tmps1=time.clock()
b,c = lecture_cube(test)
c,mouv = algo_cfop(c) # on fais l'algo
tmps2=time.clock()
liste.append(tmps2-tmps1)
return liste
liste = getTimes11400Cubes()
print("Temps éxecution cube test : "+str(getTimeDefaultCube()) +"s") # cube test
print("Temps éxecution 11400 cubes : "+str(sum(liste)) +"s")
print("Moyenne d'éxecution de 11400 cubes : "+str(moyenne(liste))+"s")
print("Écart type 11400 cubes : "+str(ecart_type(liste)) +"s")