-
Notifications
You must be signed in to change notification settings - Fork 1
/
melissa.jcm
49 lines (38 loc) · 965 Bytes
/
melissa.jcm
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
/*
melissa
---------------------------
JaCaMo Project File
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 <VERSION>
<DATE>
*/
mas melissa {
agent queen : queen.asl {
instances: 1
roles: monarca in colmeia
}
agent worker : worker.asl {
instances: 12
roles: baba in colmeia
beliefs: age(0)
}
agent worker : worker.asl {
instances: 4
roles: sentinela in colmeia
beliefs: age(18)
}
agent worker : worker.asl {
instances: 20
roles: exploradora in colmeia
beliefs: age(22)
}
organisation colmeiaOrg : organisation.xml {
group colmeia : colmeiaGroup {
//debug
}
}
// agent source path
asl-path: src/agt
src/agt/inc
}