-
Notifications
You must be signed in to change notification settings - Fork 3
/
instance_old.pl
389 lines (345 loc) · 10.1 KB
/
instance_old.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
/* instance.pl
*
* @changelog
* 8802f99 Guillaume Clochard Tue Jan 10 11:15:49 2017 +0100 Ordonnancement des séances
* ccf325a Guillaume Clochard Fri Jan 6 15:00:18 2017 +0100 Fix gestion liste de groupes
* ea7e1d8 Guillaume Clochard Fri Jan 6 14:38:15 2017 +0100 Gestion d'une liste de profs
* 0a74c23 Guillaume Clochard Tue Jan 3 14:41:09 2017 +0100 Add dateBefore/4
* b5cb411 Thomas Coquereau Tue Jan 3 14:28:54 2017 +0100 FIX jour into date
* dcc9597 Guillaume Clochard Tue Jan 3 14:22:06 2017 +0100 Simplification plage/3
* f8e54ce Thomas Coquereau Mon Jan 2 15:35:42 2017 +0100 ADD jours min et max pour le suivi
* 837a2ac Guillaume Clochard Mon Jan 2 11:37:16 2017 +0100 Ajout nom des séances
* 569cfb8 Guillaume Clochard Mon Jan 2 10:09:13 2017 +0100 Ajout tests unitaires incompatibles/2
* 47400e0 Guillaume Clochard Mon Jan 2 08:42:36 2017 +0100 Ajout incompatibles(Groupe1, Groupe2)
* 00c0db5 Guillaume Clochard Mon Jan 2 07:44:25 2017 +0100 Ajout groupeSeance et profSeance
* 7c83339 Thomas Coquereau Thu Dec 29 10:39:47 2016 +0100 ADD suit
* 935d80e Thomas Coquereau Thu Dec 29 10:31:46 2016 +0100 ADD seances
* a4a8108 Guillaume Clochard Thu Dec 15 12:55:21 2016 +0100 Début instanciation
*/
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Groupes %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/**
* groupe(Groupe, Effectif)
*
* @arg Groupe Nom du groupe
* @arg Effectif Nombre d'étudiants dans le groupe
**/
groupe(info, 62).
groupe(id, 24).
groupe(silr, 38).
groupe(silr1, 18).
groupe(silr2, 20).
groupe(silr_para, 14).
groupe(silr_code, 24).
/**
* incompatibles(Groupe1, Groupe2)
*
* Définit l'incompatibilité entre 2 groupes (si il y a des étudiants en commun)
*
* @arg Groupe1 Nom du groupe 1
* @arg Groupe2 Nom du groupe 2
*/
incomp(id, info).
incomp(silr, info).
incomp(silr1, silr).
incomp(silr1, info).
incomp(silr2, silr).
incomp(silr2, info).
incomp(silr_para, silr1).
incomp(silr_para, silr2).
incomp(silr_para, silr).
incomp(silr_para, info).
incomp(silr_code, silr1).
incomp(silr_code, silr2).
incomp(silr_code, silr).
incomp(silr_code, info).
% reflexive
incompatibles(X, X) :- !.
% symétrique
incompatibles(X, Y) :- incomp(X, Y), !.
incompatibles(X, Y) :- incomp(Y, X), !.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Matières %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/**
* matiere(Matiere)
*
* @arg Matiere Nom de la matière
**/
matiere(ia).
matiere(projet_ia).
matiere(analyse_donnees).
matiere(reseau).
matiere(parallelisme).
matiere(code).
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Profs %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/**
* prof(Prof)
*
* @arg Prof Nom de l'enseignant
**/
prof(martinez).
prof(lecapitaine).
prof(raschia).
prof(kuntz).
prof(lehn).
prof(parrein).
prof(picarougne).
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Plages %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Selon les conseils de M. Le Capitaine, nous avons modifié les plages horaires
/**
* plage(Id, Start:string, End:string)
*
* @arg Id Id de la plage horaire
* @arg Start Heure de début de la plage
* @arg End Heure de fin de la plage
*/
plage(1, "08h00", "09h30").
plage(2, "09h45", "11h15").
plage(3, "11h30", "13h00").
plage(4, "14h00", "15h30").
plage(5, "15h45", "17h15").
plage(6, "17h30", "19h00").
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Jour %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/**
* date(IdJour, IdMois)
*
* @arg IdJour Id du jour
* @arg IdMois Id du mois
*/
date(1,1).
date(2,1).
date(3,1).
date(4,1).
date(5,1).
/**
* joursParMois(-Nb).
*
* @arg Nb Nombre de jours par mois
*/
joursParMois(20).
/**
* dateBefore(J1, M1, J2, M2)
*
* Test si date 1 < date 2
*
* @arg J1 Jour date 1
* @arg M1 Mois date 1
* @arg J2 Jour date 2
* @arg M2 Mois date 2
*/
dateBefore( _, M1, _, M2) :- M1 < M2, !.
dateBefore(J1, M1, J2, M2) :- M1 = M2, J1 < J2, !.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Type de cours %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/**
* typeCours(Type)
*
* @arg Type Un type de cours
*/
typeCours(cm).
typeCours(td).
typeCours(tp).
typeCours(ds).
typeCours(mp).
typeCours(tp_para).
typeCours(tp_rez).
typeCours(ds_machine).
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Salle %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/**
* salle(Nom, Effectif)
*
* @arg Nom Nom de la salle
* @arg Effectif Nombre de place disponibles
**/
salle(a1, 300).
salle(a2, 200).
salle(b001, 26).
salle(c008, 50).
salle(c009, 26).
salle(c007, 10).
salle(e101, 24).
salle(e102, 24).
salle(e103, 24).
salle(e104, 24).
salle(e202, 50).
/**
* accueille(Salle, TypeCours)
*
* @arg Salle Nom d'une salle
* @arg TypeCours Type de cours que la salle accueille
*/
accueille(a1, cm).
accueille(a1, ds).
accueille(a2, cm).
accueille(a2, ds).
accueille(b001, tp).
accueille(b001, mp).
accueille(b001, ds_machine).
accueille(c008, cm).
accueille(c008, td).
accueille(c008, ds).
accueille(c009, tp).
accueille(c009, tp_para).
accueille(c009, mp).
accueille(c009, ds_machine).
accueille(c007, tp_rez).
accueille(e101, cm).
accueille(e101, td).
accueille(e102, cm).
accueille(e102, td).
accueille(e103, td).
accueille(e104, td).
accueille(e202, cm).
accueille(e202, td).
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Séances %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/**
* seance(Id, TypeCours, Matiere, Nom)
*
* @arg Id Id de la séance
* @arg TypeCours Type de cours de la séance
* @arg Matiere Matiere à laquelle la séance appartient
* @arg Nom Nom de la séance
*/
% Séances ia
seance(1, cm, ia, 'CM').
seance(2, td, ia, 'TD 1 - SILR2').
seance(3, tp, ia, 'TP 1 - SILR2').
seance(4, td, ia, 'TD 1 - ID').
seance(5, tp, ia, 'TP 1 - ID').
seance(6, td, ia, 'TD 1 - SILR').
seance(7, tp, ia, 'TP 1 - SILR1').
% Séances Projet ia
seance(8, tp, projet_ia, 'TP - SILR2').
seance(9, tp, projet_ia, 'TP - ID').
seance(10, tp, projet_ia, 'TP - SILR').
% Séances Analyse de données
seance(11, cm, analyse_donnees, 'CM').
seance(12, td, analyse_donnees, 'TD').
% Séances Réseau
seance(13, cm, reseau, 'CM').
seance(14, tp, reseau, 'TP - SILR1').
seance(15, tp, reseau, 'TP - SILR2').
% Séances Parallélisme
seance(16, cm, parallelisme, 'CM').
seance(17, td, parallelisme, 'TD').
% Séances Code
seance(18, cm, code, 'CM').
seance(19, tp, code, 'TP').
/**
* groupeSeance(Groupe, Seance)
*
* Définit la participation d'un groupe à une séance
*
* @arg Groupe Nom du groupe
* @arg Seance Id de la séance
*/
% Séances ia
groupeSeance(info, 1).
groupeSeance(silr2, 2).
groupeSeance(silr2, 3).
groupeSeance(id, 4).
groupeSeance(id, 5).
groupeSeance(silr1, 6).
groupeSeance(silr1, 7).
% Séances Projet ia
groupeSeance(silr2, 8).
groupeSeance(id, 9).
groupeSeance(silr1, 10).
% Séances Analyse de données
groupeSeance(id, 11).
groupeSeance(id, 12).
% Séances Réseau
%groupeSeance(silr, 13).
groupeSeance(silr1, 13).
groupeSeance(silr2, 13).
groupeSeance(silr1, 14).
groupeSeance(silr2, 15).
% Séances Parallélisme
groupeSeance(silr_para, 16).
groupeSeance(silr_para, 17).
% Séances Code
groupeSeance(silr_code, 18).
groupeSeance(silr_code, 19).
/**
* profSeance(Prof, Seance)
*
* Définit la participation d'un enseignant à une séance
*
* @arg Prof Nom de l'enseignant
* @arg Seance Id de la séance
*/
% Séances ia
profSeance(martinez, 1).
profSeance(martinez, 2).
profSeance(martinez, 3).
profSeance(lecapitaine, 4).
profSeance(lecapitaine, 5).
profSeance(rashia, 6).
profSeance(rashia, 7).
% Séances Projet ia
profSeance(martinez, 8).
profSeance(lecapitaine, 9).
profSeance(raschia, 10).
% Séances Analyse de données
profSeance(kuntz, 11).
profSeance(lecapitaine, 12).
% Séances Réseau
profSeance(lehn, 13).
profSeance(lehn, 14).
profSeance(parrein, 14).
profSeance(parrein, 15).
profSeance(lehn, 15).
% Séances Parallélisme
profSeance(martinez, 16).
profSeance(martinez, 17).
% Séances Code
profSeance(picarougne, 18).
profSeance(picarougne, 19).
/**
* suitSeance(Seance_suivante, Seance_suivie)
*
* On remarque que le prédicat nous permet également d'implémenter la relation
* de suite entre les matière (dernière séance matière 1 - première séance
* matière 2)
*
* @arg Seance_suivante Id de la séance qui suit
* @arg Seance_suivie Id de la séance suivit
*/
suitSeance(8, 2).
suitSeance(8, 3).
suitSeance(9, 4).
suitSeance(9, 5).
suitSeance(10, 6).
suitSeance(10, 7).
suitSeance(12, 11).
suitSeance(14, 13).
suitSeance(15, 13).
suitSeance(17, 16).
suitSeance(19, 18).
/**
* suitSeance(Seance_suivante, Seance_suivie, tempsMin, tempsMax)
*
* @arg Seance_suivante Id de la séance qui suit
* @arg Seance_suivie Id de la séance suivit
* @arg tempsMin Nombre de jours min avant la prochaine séance
* @arg tempsMax Nombre de jours max avant la prochaine séance
*/
suitSeance(2, 1, 1, 1).
suitSeance(3, 2, 1, 2).
suitSeance(4, 1, 2, 5).
suitSeance(5, 4, 1, 3).
suitSeance(6, 1, 2, 2).
suitSeance(7, 6, 1, 5).