|
|
我想把在每一个patch上的turtles经过一定标准选择选出一个,然后把这一个turtle的一个属性变量传递给patch,写了下面的代码。7 R# T5 c$ Y3 b' s' f
2 i0 j7 a& R9 a# J
主要有两个疑问:
- n1 w+ P6 t% S! F
7 J. x6 s/ O O5 B第一,我是用of引用turtle的属性的,可是通不过编译。应该用什么办法?6 V' u: k" q1 O
第二,set expectation那一句里的para-a和para-b也应该是被选出来的turtle包含的参数,可是目前这个写法似乎不能体现出来这个意思。
$ O! K& q0 }; `1 w8 m& S+ Z7 k/ M X% I
" _7 \( O% T: Z) W, E0 X+ Y各位高手能不能帮忙看看啊?提前谢过!' H/ j3 H7 R5 q; D* ~, o! s: Q5 m
* D) W1 e; u( C) e1 f: ]% rto form-expectation- l- s3 I* i# R
ask patches [* d% A! ^* m! I$ W _
let active-strategy min-one-of ( turtles-here with [ length ( remove true (map [?1 = ?2] predictor descriptor) ) = length ( remove "#" predictor )]) [ strategy-error ]
# a) h% Y+ B* |: n. Y$ y$ `+ K set expectation para-a * ( pre-price + pre-dividend ) + para-b
8 o( f2 n: a9 J0 j9 n: d, b! y set trader-error strategy-error of active-strategy
7 r$ Q- W5 ~: Z# x; o set trader-type strategy-type of active-strategy ]
$ ~ F3 \) ^7 w4 |1 O5 y7 _end |
|