Difference between revisions of "Nano bots"

From WikiManual
Jump to: navigation, search
(New page: Nano bots are the simplest form of life that can be simulated in Darwinbots. They are conditionless and have only one store command. They use arithmetic operations to return each cycle th...)
 
(Changed the links to point to valid pages)
Line 3: Line 3:
 
They are conditionless and have only one store command. They use arithmetic operations to return each cycle the sysvar that must be stored into.
 
They are conditionless and have only one store command. They use arithmetic operations to return each cycle the sysvar that must be stored into.
  
The first nano bot [http://www.darwinbots.com/Forum/index.php?showtopic=2009&hl=] was a result of studying a behaviour evolved from [[zerobots]].
+
The first [http://www.darwinbots.com/Forum/index.php?showtopic=2009&hl= nano bot] was a result of studying a behaviour evolved from [[zerobot | zerobots]].
  
 
  start
 
  start
Line 11: Line 11:
 
This minimal bot is able to tiefeed, reproduce, move and adjust its eye width. It's lifespan is limited though to its starting body points.
 
This minimal bot is able to tiefeed, reproduce, move and adjust its eye width. It's lifespan is limited though to its starting body points.
  
A different development line for nano bots may be nullifying all sysvars but one for each cycle, using [[Single Gene]] code.
+
A different development line for nano bots may be nullifying all sysvars but one for each cycle, using [[Conditionless Bots | Single Gene]] code.

Revision as of 12:09, 12 August 2007

Nano bots are the simplest form of life that can be simulated in Darwinbots.

They are conditionless and have only one store command. They use arithmetic operations to return each cycle the sysvar that must be stored into.

The first nano bot was a result of studying a behaviour evolved from zerobots.

start
50 830 5 1 rnd mult sub 500 1 rnd mult sub 30 1 rnd mult sub 299 1 rnd mult sub store
stop

This minimal bot is able to tiefeed, reproduce, move and adjust its eye width. It's lifespan is limited though to its starting body points.

A different development line for nano bots may be nullifying all sysvars but one for each cycle, using Single Gene code.