NetLogo
NetLogo copied to clipboard
turtles, patches, and links for kids, teachers, and scientists
With recent Vid extension updates (actually with the prior round of them) the file size has gotten overly large, 268mb on its own. The dependencies include the native libs for...
NetLogo is unable to supply you with more details about this error. Please report the problem at https://github.com/NetLogo/NetLogo/issues, or to [email protected], and paste the contents of this window into your...
Fixes: #[2021](https://github.com/NetLogo/NetLogo/issues/2021) Addresses: #[1617](https://github.com/NetLogo/NetLogo/issues/1617) Addresses: #[1832] (https://github.com/NetLogo/NetLogo/issues/1832) The model in the zip file can be used for testing. The tests on the left note work properly. There is still a...
1. It would be nice to be able to re-initialize `ticks` without touching the plots. Please provide a primitive that does this. (Note that `tick-advance` refuses a negative value.) 2....
Please add language primitives to support function iteration. To inefficiently illustrate the desired functionality: ``` to-report nestList [ #f ;(task) : the function to iterate #x0 ;(number) : the initial...
I received this error code today while trying to run an in-radius command: java.lang.ArrayIndexOutOfBoundsException: 10 at org.nlogo.agent.Patch.getPatchVariable(Patch.java:297) at org.nlogo.prim._asm_procedurefirmmovement_uphill_22.perform(:1) at org.nlogo.nvm.Context.runExclusive(Context.java:133) at org.nlogo.nvm.ExclusiveJob.run(ExclusiveJob.scala:39) at org.nlogo.nvm.Context.runExclusiveJob(Context.java:177) at org.nlogo.prim._asm_procedurefirmmovement_ask_0.perform(:1) at org.nlogo.nvm.Context.stepConcurrent(Context.java:107) at...
When using `carefully` around `other-end` it gets confused: ``` to setup ca crt 2 ask turtle 0 [ create-link-with turtle 1 ] end to foo ask turtle 0 [ ask...
It appears that including any call to native code in my NetLogo monitor causes NetLogo to crash with a `malloc: Heap corruption detected` error (see full trace below). It is...
NetLogo appears to be looking specifically for x86_64 files rather than arm64 files when loading native libraries in an extension Full error report: java.lang.UnsatisfiedLinkError: Native library libdemo0.dylib (/native/x86_64-darwin/libdemo0.dylib) cannot be...
Writing an extension that is built using old version of Scala (v2.12.15) works fine, but newer version (v2.13.8) fails at runtime with the below error. The code used to produce...