Netlogo 使用nw进行可复制的模拟运行:生成优先连接?

Netlogo 使用nw进行可复制的模拟运行:生成优先连接?,netlogo,Netlogo,我想进行一次可复制的模拟运行,首先使用nw:generate preferential attachment生成网络 我使用随机种子设置随机数生成的种子。当min degree=4或更小时,此功能正常工作。令人惊讶的是,它不适用于min degree=5或更高。当我清除所有,设置种子,生成网络并随机放置节点时,这看起来总是不同的,min degree>=5。mindegree的外观相同(应该如此),听起来像是nw扩展中的一个bug。我建议在报告时报告它,它确实是一个bug,现在已经修复: ext

我想进行一次可复制的模拟运行,首先使用
nw:generate preferential attachment
生成网络


我使用随机种子设置随机数生成的种子。当
min degree
=4或更小时,此功能正常工作。令人惊讶的是,它不适用于
min degree
=5或更高。当我清除所有,设置种子,生成网络并随机放置节点时,这看起来总是不同的,
min degree
>=5。
mindegree
的外观相同(应该如此),听起来像是
nw
扩展中的一个bug。我建议在报告时报告它,它确实是一个bug,现在已经修复:
extensions [nw] 
to setup 
  clear-all
  random-seed 1
  nw:generate-preferential-attachment turtles links 100 5
  ask turtles [setxy random-xcor random-ycor]
end