我希望代理仅记住最后即时报价的全局变量的值,我想将它们存储在列表中并在以后使用它,其中代理应比较列表项并针对当前即时报价做出决定。我尝试实现以下代码,但努力徒劳无功。
`set time-car_t-2 time-car of tick [n - 2]
set time-car_t-1 time-car of last tick
set history-time-car [list time-car_t-1 time-car_t-2 time-car_t]
计算时间-汽车的逻辑已经到位并工作,其中所有三个都是全局变量"时间-汽车","时间-car_t-1"和"时间-car_t-2">
任何建议都会有所帮助,我将不胜感激。 提前谢谢。
NetLogo 不记得过去的值,因此它无法为您提供过去即时报价的变量(或报告器的结果(的值。您需要在生成这些值时将这些值保存在模型中,这通常通过使用列表来完成。在下面的代码中,每只都设置了一个长度为 5(由history-length
指定(的time-car-history
,最初填充 -1。然后,在test
中,每只的价值为time-car
(这里只是一个随机数(,并将其添加到其历史的开始。 因此,当前值item 0
在其time-car-history
中,之前一个逐笔报价的值是item 1 time-car-history
,依此类推,回到四个逐笔报价。 请注意,在将当前值添加到time-car-history
时,我使用but-last
删除最后一个值,因此仅保存最近的五个值。 如果将此代码粘贴到空白模型中,在命令行中键入"setup",然后重复键入"test",您应该会看到它是如何工作的。
turtles-own [time-car-history]
to setup
clear-all
let history-length 5 ; the number of periods you want to save
create-turtles 10 [
; creates a history list of the right length, filled with -1's.
set time-car-history n-values history-length [-1]
]
reset-ticks
end
to test
ask turtles [
set time-car-history fput time-car but-last time-car-history
]
ask turtle 3 [
show time-car-history
show item 0 time-car-history
show item 1 time-car-history
show item 2 time-car-history
]
tick
end
to-report time-car
report random 10
end