-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cuadres.pont
397 lines (386 loc) · 9.85 KB
/
Cuadres.pont
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
390
391
392
393
394
395
396
397
; Tue Nov 29 17:54:23 CET 2016
;
;+ (version "3.5")
;+ (build "Build 663")
(defclass %3ACLIPS_TOP_LEVEL_SLOT_CLASS "Fake class to save top-level slot information"
(is-a USER)
(role abstract)
(single-slot Nombre_tematica
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Epoca_cuadro
(type INSTANCE)
;+ (allowed-classes Epoca)
;+ (cardinality 0 1)
;+ (inverse-slot Cuadros_epoca)
(create-accessor read-write))
(single-slot Pintado_por
(type INSTANCE)
;+ (allowed-classes Pintor)
;+ (cardinality 0 1)
;+ (inverse-slot Ha_pintado)
(create-accessor read-write))
(multislot Tematica_pref
(type INSTANCE)
;+ (allowed-classes Preferencia)
;+ (inverse-slot Pref_tematica)
(create-accessor read-write))
(multislot Epocas_pintor
(type INSTANCE)
;+ (allowed-classes Epoca)
;+ (inverse-slot Pintores_epoca)
(create-accessor read-write))
(single-slot Titulo
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(multislot Pref_epoca
(type INSTANCE)
;+ (allowed-classes Epoca)
;+ (inverse-slot Epoca_pref)
(create-accessor read-write))
(single-slot Nombre
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(multislot Epoca_pref
(type INSTANCE)
;+ (allowed-classes Preferencia)
;+ (inverse-slot Pref_epoca)
(create-accessor read-write))
(single-slot Conocimiento_visita
(type INSTANCE)
;+ (allowed-classes Conocimiento)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Descripcion
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Tamanyo_visita
(type INSTANCE)
;+ (allowed-classes Tamanyo)
;+ (cardinality 0 1)
(create-accessor read-write))
(multislot Ha_pintado
(type INSTANCE)
;+ (allowed-classes Cuadro)
;+ (inverse-slot Pintado_por)
(create-accessor read-write))
(single-slot Estilo_cuadro
(type INSTANCE)
;+ (allowed-classes Estilo)
;+ (cardinality 0 1)
;+ (inverse-slot Cuadros_estilo)
(create-accessor read-write))
(multislot Cuadros_tematica
(type INSTANCE)
;+ (allowed-classes Cuadro)
;+ (inverse-slot Tematica_cuadro)
(create-accessor read-write))
(multislot Pref_estilo
(type INSTANCE)
;+ (allowed-classes Estilo)
;+ (inverse-slot Estilo_pref)
(create-accessor read-write))
(multislot Estilo_pref
(type INSTANCE)
;+ (allowed-classes Preferencia)
;+ (inverse-slot Pref_estilo)
(create-accessor read-write))
(multislot Pintor_pref
(type INSTANCE)
;+ (allowed-classes Preferencia)
;+ (inverse-slot Pref_pintor)
(create-accessor read-write))
(single-slot Complejidad
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write))
(multislot Pref_visita
(type INSTANCE)
;+ (allowed-classes Visita)
;+ (inverse-slot Visita_pref)
(create-accessor read-write))
(single-slot Relevancia
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write))
(multislot Pref_pintor
(type INSTANCE)
;+ (allowed-classes Pintor)
;+ (inverse-slot Pintor_pref)
(create-accessor read-write))
(multislot Pintores_estilo
(type INSTANCE)
;+ (allowed-classes Pintor)
;+ (inverse-slot Estilos_pintor)
(create-accessor read-write))
(single-slot Visita_pref
(type INSTANCE)
;+ (allowed-classes Preferencia)
;+ (cardinality 0 1)
;+ (inverse-slot Pref_visita)
(create-accessor read-write))
(multislot Cuadros_epoca
(type INSTANCE)
;+ (allowed-classes Cuadro)
;+ (inverse-slot Epoca_cuadro)
(create-accessor read-write))
(single-slot Dim
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Autor
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Anyo
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot HorasDia
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Tematica_cuadro
(type INSTANCE)
;+ (allowed-classes Tematica)
;+ (cardinality 0 1)
;+ (inverse-slot Cuadros_tematica)
(create-accessor read-write))
(multislot Cuadros_estilo
(type INSTANCE)
;+ (allowed-classes Cuadro)
;+ (inverse-slot Estilo_cuadro)
(create-accessor read-write))
(single-slot Dias
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write))
(multislot Estilos_pintor
(type INSTANCE)
;+ (allowed-classes Estilo)
;+ (inverse-slot Pintores_estilo)
(create-accessor read-write))
(single-slot Nombre_estilo
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Nivel
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Nacionalidad
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(multislot Pintores_epoca
(type INSTANCE)
;+ (allowed-classes Pintor)
;+ (inverse-slot Epocas_pintor)
(create-accessor read-write))
(single-slot Nombre_epoca
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(multislot Pref_tematica
(type INSTANCE)
;+ (allowed-classes Tematica)
;+ (inverse-slot Tematica_pref)
(create-accessor read-write))
(single-slot Sala
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write)))
(defclass Cuadro
(is-a USER)
(role concrete)
(single-slot Dim
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Epoca_cuadro
(type INSTANCE)
;+ (allowed-classes Epoca)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Pintado_por
(type INSTANCE)
;+ (allowed-classes Pintor)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Complejidad
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Anyo
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Relevancia
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Titulo
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Estilo_cuadro
(type INSTANCE)
;+ (allowed-classes Estilo)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Tematica_cuadro
(type INSTANCE)
;+ (allowed-classes Tematica)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Sala
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write)))
(defclass Pintor
(is-a USER)
(role concrete)
(single-slot Nombre
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(multislot Estilos_pintor
(type INSTANCE)
;+ (allowed-classes Estilo)
(create-accessor read-write))
(multislot Epocas_pintor
(type INSTANCE)
;+ (allowed-classes Epoca)
(create-accessor read-write))
(multislot Ha_pintado
(type INSTANCE)
;+ (allowed-classes Cuadro)
(create-accessor read-write))
(multislot Pintor_pref
(type INSTANCE)
;+ (allowed-classes Preferencia)
(create-accessor read-write))
(single-slot Nacionalidad
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write)))
(defclass Epoca
(is-a USER)
(role concrete)
(multislot Pintores_epoca
(type INSTANCE)
;+ (allowed-classes Pintor)
(create-accessor read-write))
(multislot Epoca_pref
(type INSTANCE)
;+ (allowed-classes Preferencia)
(create-accessor read-write))
(single-slot Nombre_epoca
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(multislot Cuadros_epoca
(type INSTANCE)
;+ (allowed-classes Cuadro)
(create-accessor read-write)))
(defclass Estilo
(is-a USER)
(role concrete)
(multislot Cuadros_estilo
(type INSTANCE)
;+ (allowed-classes Cuadro)
(create-accessor read-write))
(multislot Estilo_pref
(type INSTANCE)
;+ (allowed-classes Preferencia)
(create-accessor read-write))
(multislot Pintores_estilo
(type INSTANCE)
;+ (allowed-classes Pintor)
(create-accessor read-write))
(single-slot Nombre_estilo
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write)))
(defclass Tematica
(is-a USER)
(role concrete)
(single-slot Nombre_tematica
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write))
(multislot Cuadros_tematica
(type INSTANCE)
;+ (allowed-classes Cuadro)
(create-accessor read-write))
(multislot Tematica_pref
(type INSTANCE)
;+ (allowed-classes Preferencia)
(create-accessor read-write)))
(defclass Visita
(is-a USER)
(role concrete)
(single-slot Dias
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Conocimiento_visita
(type INSTANCE)
;+ (allowed-classes Conocimiento)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Tamanyo_visita
(type INSTANCE)
;+ (allowed-classes Tamanyo)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot Visita_pref
(type INSTANCE)
;+ (allowed-classes Preferencia)
;+ (cardinality 0 1)
(create-accessor read-write))
(single-slot HorasDia
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write)))
(defclass Tamanyo
(is-a USER)
(role concrete)
(single-slot Descripcion
(type STRING)
;+ (cardinality 0 1)
(create-accessor read-write)))
(defclass Conocimiento
(is-a USER)
(role concrete)
(single-slot Nivel
(type INTEGER)
;+ (cardinality 0 1)
(create-accessor read-write)))
(defclass Preferencia
(is-a USER)
(role concrete)
(multislot Pref_pintor
(type INSTANCE)
;+ (allowed-classes Pintor)
(create-accessor read-write))
(multislot Pref_visita
(type INSTANCE)
;+ (allowed-classes Visita)
(create-accessor read-write))
(multislot Pref_estilo
(type INSTANCE)
;+ (allowed-classes Estilo)
(create-accessor read-write))
(multislot Pref_tematica
(type INSTANCE)
;+ (allowed-classes Tematica)
(create-accessor read-write))
(multislot Pref_epoca
(type INSTANCE)
;+ (allowed-classes Epoca)
(create-accessor read-write)))