0
ここで、特定のリンクの種類を非アクティブに変更したい場合、以下のエラーを示す次のコードを使用しようとしています。あなたの誰もがコードしてくださいリンクの種類を変更するにはどうすればよいですか?
directed-link-breed [active-links active-link]
directed-link-breed [inactive-links inactive-link]
to link-network
ask nodes
[
create-active-links-to other nodes
[
let num-links count links
let link-freq round (num-links * link-chance/100)
ask n-of link-freq links
[
set breed inactive-links
hide-link
]
]
]
layout
end
to layout
repeat 10 [layout-spring nodes links 0.2 5 0.1 ]
display
end
Error: There is already a INACTIVE-LINK with endpoints node 75 and node 28 error while inactive-link 75 28 running SET called by procedure LINK-NETWORK
called by procedure SETUP-NODES
called by procedure SETUP
called by Button 'setup'
セットアップノードのプロシージャコードを送信できますか?それは本当の問題を見つけるためのヒントです。 –