-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig
79 lines (59 loc) · 1.56 KB
/
config
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# fichier modèle d'utilisation de gnuplot
# vous pouvez aussi l'utiliser simplement en faisant en ligne de commande :
# gnuplot monfichier
#set terminal png size 1024,800 enhanced
#set output 'output.png'
set terminal X11
set size 0.8,0.8
set nokey
set multiplot layout 3,5 rowsfirst
#########################
# Single solution
#########################
set title 'Permutations'
set ylabel 'nb. combi. avant premiere sol.'
set xlabel 'taille de la grille'
set logscale y
plot 'sol1.data' u 1:2 w l
set title 'Backtrack'
set nologscale
plot 'sol1.data' u 1:3 w l
set title 'Las Vegas Obstine'
plot 'sol1.data' u 1:4 w l
set title 'Hybride'
plot 'sol1.data' u 1:5 w l
set title 'Analyse Hybride'
plot 'solh.data' u 1:2 w l
#########################
# All solutions COMBINATIONS
#########################
set title 'Permutations'
set ylabel 'nb. combi. avant toutes sol.'
set xlabel 'taille de la grille'
#set logscale y
plot 'soln.data' u 1:2 w l
set title 'Backtrack'
#set nologscale
plot 'soln.data' u 1:4 w l
set title 'Las Vegas Obstine'
plot 'soln.data' u 1:6 w l
set title 'Hybride'
plot 'soln.data' u 1:8 w l
set title 'Analyse Hybride'
plot 'solh.data' u 1:3 w l
#########################
# All solutions DELAY
#########################
set title 'Permutations'
set ylabel 'temps avant toutes solutions (ms)'
set xlabel 'taille de la grille'
#set logscale y
plot 'soln.data' u 1:3 w l
set title 'Backtrack'
#set nologscale
plot 'soln.data' u 1:5 w l
set title 'Las Vegas Obstine'
plot 'soln.data' u 1:7 w l
set title 'Hybride'
plot 'soln.data' u 1:9 w l
unset multiplot