如何与新创建的海龟创建链接

时间:2019-04-13 23:24:27

标签: netlogo

我无法获得一些创建链接。我已经使用netlogo已有几个月了,但在这个简单的代码中却找不到问题

对于puestos 1、2和3,会创建链接,但对于4和5,它们不会创建。我无法使用Who号码创建链接,因为其变量。

 create-puestos 1[

    setxy 29.2 6.9
    set shape "silla"
    set size 1
    set color green
  ]
  create-puestos 1[

    setxy 29.2 7.45
    set shape "silla"
    set size 1
    set color green
  ]

  create-puestos 1[

    setxy 29.2 8.0
    set shape "silla"
    set size 1
    set color green
  ]

  create-entrada-puestos 1 [

    setxy 28.5 7.8
    set shape "circle"
    *create-links-with puestos with [ not any? links]*
  ]



  create-puestos 1[

    setxy 29.2 8.55
    set shape "silla"
    set size 1
    set color green
  ]
  create-puestos 1[

    setxy 29.2 9.1
    set shape "silla"
    set size 1
    set color green
  ]

  create-entrada-puestos 1 [

    setxy 28.5 8.2
    set shape "circle"
    *create-links-with puestos with [ not any? links]*
  ]

1 个答案:

答案 0 :(得分:1)

create-links-with puestos with [ not any? my-links]替换为any? links

一旦创建了任何链接,则truemy-linksObject是属于特定乌龟的链接。