forked from Liga-IA/template-mas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.jcm
More file actions
32 lines (24 loc) · 741 Bytes
/
Copy pathmain.jcm
File metadata and controls
32 lines (24 loc) · 741 Bytes
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
/*
JaCaMo Application File Template
--------------------------------
This file defines the initial state of the MAS (initial agents, environment, organisation, ....)
(see jacamo/doc/jcm.html for more information about what can be defined in this file)
JaCaMo 1.2
*/
mas main {
// agent bob: sample_agent.asl {
// focus: w.c1
// }
// agent ar_condicionado: ar_condicionado.asl
// agent camera: camera.asl
// agent cortina: cortina.asl
// agent lampada: lampada.asl
// agent fechadura: fechadura.asl
agent john: aspirador1.asl{
beliefs: posicao(le), ~sujo(ld), sujo(le)
goals: limpar_ambiente
}
workspace w {
artifact c1: example.Counter(3)
}
}