我有兩個龜 - 賣方和買方在一個補丁,他們有形狀"face happy"
。 但是在運行安裝程序的界面上,如果在一個補丁中有兩個龜,我只能看到其中的一個。 我的問題是,我怎麼編碼它,以便看到他們兩個。如果它不可能至少在一些補丁中看到另一個補丁中的一個代理。如何讓兩個龜在一個補丁中都可見?
這裏是我的代碼:
所有的ask sellers
[move-to one-of patches with [not any? turtles-here]]
ask buyers
[move-to one-of patches with [not any? buyers-here]]
ask buyers [if any? sellers-here [set shape "face happy"]]
ask buyers [if not any? sellers-here [set shape "face sad"]]
ask buyers [if any? sellers-here [set color 67]]
ask sellers [if any? buyers-here [set shape "face happy"]]
ask sellers [if not any? buyers-here [set shape "face sad"]]
ask sellers [if any? buyers-here [set color 137]]
即使從補丁中心開始,「fd 0.5」可能會將龜帶到不同的補丁。我建議一個較小的值。 – 2014-12-13 18:28:40
如果標題是隨機的,應該幾乎是不可能的,但好點。編輯。 – Alan 2014-12-14 18:01:39