-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbla.lp
82 lines (36 loc) · 784 Bytes
/
bla.lp
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
%*
#schedule(ID,S,T,O,D).
Describes the schedule for an agent.
#parameters
ID: identifier of the agent
S: Start position in the form (X,Y) (Flatland style)
T: Target position in the form (X,Y) (Flatland style)
O: Initial orientation of the agent
D: Earliest departure of the agent
*%
schedule(0,(1,0),(0,2),3,0).
parameters(1,2,3).
%*
#parameters(A,B,C).
Some random parameters
#parameters
A:a
B:b
C:c
#parameters
A:a
B:b
C:c
*%
lel() :- parameters()
%*#azad(A,B,C).*%
% tolle beschreibung
1{pred_direction(ID,D,T):cell(P,O,D,U)}1 :- schedule(ID,P,_,O,T), irgendwas(1,2,3).
some_rule(ID,D,T) :- pred_direction(ID,D,T), cell(P,O,D), schedule((), (), (), (), ()).
%*
#pred_direction(ID,D,T).
#parameters
ID : lel
D: a
T: a
*%