Fully Connected Network Benchmark

No preview image

1 collaborator

Uri_dolphin3 Uri Wilensky (Author)

Tags

(This model has yet to be categorized with any tags)
Model group CCL | Visible to everyone | Changeable by group members (CCL)
Model was written in NetLogo 4.0.2 • Viewed 246 times • Downloaded 23 times • Run 2 times
Download the 'Fully Connected Network Benchmark' modelDownload this modelEmbed this model

Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)


Comments and Questions

Please start the discussion about this model! (You'll first need to log in.)

Click to Run Model

globals [result]

to benchmark
  random-seed 5894712
  reset-timer
  setup
  repeat 100 [ go ]
  set result timer
end 

to setup
  clear-all
  set-default-shape turtles "circle"
  cro 1000 [
    fd max-pxcor
  ]
  ask turtle 999 [
    create-links-with other turtles [
      hide-link
    ]
  ]
end 

to go
  repeat 100 [
    ask turtle 999 [
      ask link-with one-of link-neighbors [
        set color color + 1
      ]
    ]
  ]
  tick
end 


There are 3 versions of this model.

Uploaded by When Description Download
Uri Wilensky almost 14 years ago Updated from NetLogo 4.1 Download this version
Uri Wilensky almost 14 years ago Fully Connected Network Benchmark Download this version
Uri Wilensky almost 14 years ago Fully Connected Network Benchmark Download this version

Attached files

No files

This model does not have any ancestors.

This model does not have any descendants.