|
|
我想把在每一个patch上的turtles经过一定标准选择选出一个,然后把这一个turtle的一个属性变量传递给patch,写了下面的代码。; X6 L+ d& e- N% b5 J1 a3 _, Y% x
- A; h' p6 m: C6 b7 S* B% b/ w2 V, P
主要有两个疑问:- b% J; D) n/ p: {
% {& Z: _" h. P& v& k
第一,我是用of引用turtle的属性的,可是通不过编译。应该用什么办法?! p6 R# G; z/ A: N8 ^
第二,set expectation那一句里的para-a和para-b也应该是被选出来的turtle包含的参数,可是目前这个写法似乎不能体现出来这个意思。
( H1 H. s7 w& Y# g7 K0 [& g5 X! O& n% J" g/ c4 v
; T# ?; w8 R& k% `' n6 u9 @4 w5 M8 U
各位高手能不能帮忙看看啊?提前谢过!
( @# q5 Z5 C; p; }7 O; b$ U3 u+ @$ S |) H3 h. j. N
to form-expectation( B) }, Z. ^7 R' C! V6 S9 B
ask patches [% }& ^' L) }# z6 r# b0 `: B& i
let active-strategy min-one-of ( turtles-here with [ length ( remove true (map [?1 = ?2] predictor descriptor) ) = length ( remove "#" predictor )]) [ strategy-error ]
& b& B6 Y/ f( A' s set expectation para-a * ( pre-price + pre-dividend ) + para-b& @+ h* @7 S2 u0 A/ y9 u
set trader-error strategy-error of active-strategy9 i" `, b, M8 G0 P
set trader-type strategy-type of active-strategy ]
- e& C$ I0 Q8 j6 t' g2 F: xend |
|