Conflicts:
	Source/main.nlogo
This commit is contained in:
Fabien 2013-07-17 18:40:39 +02:00
commit 7bb80721f2
2 changed files with 5 additions and 3 deletions

View File

@ -247,7 +247,7 @@ season-uncertainty
season-uncertainty season-uncertainty
0 0
20 20
20 4.9
0.1 0.1
1 1
NIL NIL
@ -262,7 +262,7 @@ d-max
d-max d-max
0 0
30 30
30 12
1 1
1 1
NIL NIL

View File

@ -16,6 +16,7 @@ to setup-spots
end end
to setup-beekeepers to setup-beekeepers
let temp 1
file-open "beekeepers-initial-location.txt" file-open "beekeepers-initial-location.txt"
while [not file-at-end?] while [not file-at-end?]
[ [
@ -25,7 +26,8 @@ to setup-beekeepers
[ set shape "person" [ set shape "person"
set size 1 set size 1
move-to one-of centroids-on patches with [ county-name = location-bk ] move-to one-of centroids-on patches with [ county-name = location-bk ]
if trace-on [ set color red pd ] ] if trace-on [ set color temp pd ] ]
set temp temp + 3
] ]
file-close file-close
end end