-
Notifications
You must be signed in to change notification settings - Fork 3
/
utils.pl
160 lines (144 loc) · 3.35 KB
/
utils.pl
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* utils.pl
*
* @changelog
* 8802f99 Guillaume Clochard Tue Jan 10 11:15:49 2017 +0100 Ordonnancement des séances
* 58acf14 Guillaume Clochard Tue Jan 10 10:11:59 2017 +0100 Ajout beforeSeance/3
* 3eb734e Guillaume Clochard Tue Jan 10 09:45:05 2017 +0100 Ajout indiceSeance/2
* */
/**
* indiceSeance(+S, -I).
*
* Retourne l'indice de la séance dans sa matière
*
S0 I = 0
|
----------
| |
| |
S1 S2 I = 1
|
---------
| |
| |
S3 S4 I = 2
| |
---------
|
S5 I = 3
*
* @arg S Id de séance
* @arg I L'indice
*/
indiceSeance(S, 0) :- \+ suitSeance(S, _), \+ suitSeance(S, _, _, _), !.
indiceSeance(S, N) :-
(suitSeance(S, S1); suitSeance(S, S1, _, _)),
!,
indiceSeance(S1, N1),
N is N1 + 1,
!.
/**
* beforeSeance(-Order, +S1, +S2).
*
* R est unifié à < si S1 a un indice plus petit que S2, > sinon
*
* @arg Order
* @arg S1 Id de séance
* @arg S2 Id de séance
*/
beforeSeance(R, S1, S2) :-
indiceSeance(S1, N1),
indiceSeance(S2, N2),
N2 > N1 -> R = <; R = > .
/**
* afficherSeance(+S)
*
* @arg S
*/
afficherSeance(S) :-
seance(S, TypeCours, Mat, Nom),
write('Séance:\t\t'),
write(S), write(' "'), write(Nom), write('"'),
write(' - '), write(TypeCours),
write(' - '), write(Mat).
/**
* afficherMoment(+J, +M, +H)
*
* @arg J
* @arg M
* @arg H
*/
afficherMoment(J, M, H) :-
plage(H, Start, End),
write('Date:\t\t'),
write(J), write('/'), write(M),
write(' '), write(Start), write('-'), write(End).
/**
* afficherGroupe(+Gs)
*
* @arg Gs liste de groupes
*/
afficherGroupe([G]) :-
write(G),
!.
afficherGroupe([G, G2|Gs]) :-
write(G), write(', '),
afficherGroupe([G2|Gs]).
/**
* afficherGroupes(+S)
*
* @arg S Une séance
*/
afficherGroupes(S) :-
findall(G, groupeSeance(G, S), Gs), % tous les groupes de la séance
write('Groupes:\t'),
afficherGroupe(Gs).
/**
* afficherProf(+Ps)
*
* @arg Ps liste d'enseignants
*/
afficherProf([P]) :-
write(P),
!.
afficherProf([P, P2|Ps]) :-
write(P), write(', '),
afficherProf([P2|Ps]).
/**
* afficherProfs(+S)
*
* @arg S Une séance
*/
afficherProfs(S) :-
findall(P, profSeance(P, S), Ps), % tous les profs de la séance
write('Profs:\t\t'),
afficherProf(Ps).
/**
* afficherSalle(+L)
*
* @arg L Une salle
*/
afficherSalle(L) :-
salle(L, Nb),
write('Salle:\t\t'), write(L), write('('), write(Nb), write(')').
/**
* afficherPlanification(+Cs)
*
* Affiche la planification dans l'ordre chronologique
*
* @arg Cs Une liste de créneaux
*/
afficherPlanification([]) :- !.
afficherPlanification(Cs) :-
date(J, M),
plage(H, _, _),
member(C, Cs),
C = [S, H, J, M, L],
write('--------------------------------------------------------------'), nl,
afficherSeance(S), nl,
afficherMoment(J, M, H), nl,
afficherGroupes(S), nl,
afficherProfs(S), nl,
afficherSalle(L), nl,
delete(Cs, C, Cs2),
afficherPlanification(Cs2),
!.