projects:archevo:archevo
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
projects:archevo:archevo [2021/04/19 16:32] – Add information about cannibalism Owen Mellema | projects:archevo:archevo [2021/04/25 18:15] (current) – Owen Mellema | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== ArchEvo ====== | ====== ArchEvo ====== | ||
- | {{: | + | // See ArchEvo in action on [[https://github.com/ |
- | ===== The Model ===== | + | **ArchEvo** is an experiment on evolution of digital lifeforms. It is a simulation of a 2D world, where virtual machines must compete for energy and reproduce. |
- | ==== Cells ==== | + | ===== Model ===== |
- | A cell is a virtual machine that exists in the Universe. | + | //See main article, [[projects: |
- | === Registers === | + | Cells are virtual machines that have a program and eight registers. The program is translated by the [[ projects: |
- | A cell has eight registers, each of which are eight bits wide. The first cell represent the amount of energy the cell has (( Since the registers are only 8 bits wide, that means that the maximum amount of energy a cell can have is limited to 256, as it cannot overflow )). When a new cell is created, all of the registers are set to 0, except for the energy register. | + | ===== Evolvable ISA ===== |
+ | //See main article, [[projects: | ||
- | Technically, the rest of the cells have no intrinsic meaning separate from the context in which they are run (including ISA, combat handler, reproduction handler, etc) , but generally | + | Cells require a special type of ISA known as an // |
- | * 0: Energy | + | |
- | * 1: Logo | + | |
- | * 2: Guess | + | |
- | * 3: Register A | + | |
- | * 4: Register B | + | |
- | * 5: Register C | + | |
- | * 6: Register D | + | |
- | * 7: IPLOC | + | |
- | The names of regs 1 and 2 come from the [[ projects: | + | To be evolvable, there are two important requirements. Firstly, |
- | == Death == | + | [[ projects: |
- | + | * [[isa# | |
- | When energy is 0 (it can't underflow), the cell is dead, and will be garbage collected in the next iteration. | + | * [[isa# |
- | + | * [[isa#IPLOC]]: The most significant bit of a certain register (known as the **I**nspection **P**ointer **LOC**ation, or IPLOC for short) represents an offset from the cell. A set of virtual registers represent | |
- | === Program === | + | |
- | + | ||
- | A cell has a set of instructions that is called a Program. Each individual instruction is simply a set of bits. The instructions may be of an arbitrary length depending on the ISA. [[ projects: | + | |
- | + | ||
- | When a new cell is introduced randomly into the Universe, all of the bits of the program will be randomized. However, when a cell is created as a child of another cell, the new cell inherits the parent' | + | |
- | + | ||
- | A cell also has an Instruction Pointer (IP) . This is a number | + | |
- | + | ||
- | === Actions === | + | |
- | + | ||
- | Each iteration, the instruction that is pointed at by the IP is translated into an action. The possible actions are: | + | |
- | * RegisterUpdate < | + | |
- | * Attack < | + | |
- | * DoNothing ((DoNothing has a counterpart ExternalDoNothing that exists for technical reasons)) | + | |
- | * Move < | + | |
- | * MoveInstructionPointer < | + | |
- | * Reproduce < | + | |
- | + | ||
- | This action is then executed. | + | |
- | + | ||
- | == Reproduction == | + | |
- | {{ : | + | |
- | * Can the parent reproduce? | + | |
- | * What energy cost will the parent need to pay to reproduce? | + | |
- | * What will the baby cell's initial energy be? | + | |
- | If the parent cannot reproduce, no change will occur. If the parent can reproduce, then the energy cost is deducted from the parent, and a new cell is created with the proper amount | + | |
- | + | ||
- | == Attacking == | + | |
- | {{: | + | |
- | + | ||
- | ==== Universe ==== | + | |
- | + | ||
- | The Universe is a grid that contains Cells. Although it is a finite grid, the edges wrap around to the opposite side, meaning | + | |
- | + | ||
- | Each iteration, some new cells are spawned with randomized programs. | + | |
===== Implementations ===== | ===== Implementations ===== | ||
Line 70: | Line 28: | ||
==== ArchEvo Classic ==== | ==== ArchEvo Classic ==== | ||
- | {{: | + | {{: |
- | This version demonstrated that my model, along with the ISA I had created (later known as [[ projects: | + | This version demonstrated that my model, along with the ISA I had created (later known as [[ ASIA ]] ) were capable of demonstrating interesting evolutionary properties. |
ArchEvo Classic suffered from a number of problems that crippled it's usage as an experimental tool. Firstly, it had poor separation of concerns, which meant that trying out new concepts like new ISAs would end up touching almost all of the parts of the code. Secondly, there were some logical problems. The Universe was rife with race conditions, including the fact that cells with a lower x and y had priority over other cells. Finally, the Universe' | ArchEvo Classic suffered from a number of problems that crippled it's usage as an experimental tool. Firstly, it had poor separation of concerns, which meant that trying out new concepts like new ISAs would end up touching almost all of the parts of the code. Secondly, there were some logical problems. The Universe was rife with race conditions, including the fact that cells with a lower x and y had priority over other cells. Finally, the Universe' | ||
Line 93: | Line 51: | ||
* ISA: [[ ASIA ]] | * ISA: [[ ASIA ]] | ||
* ReproductionHandler: | * ReproductionHandler: | ||
- | * CombatHander: | + | * CombatHander: |
* Iteration Execution Mode: Instruction By Instruction | * Iteration Execution Mode: Instruction By Instruction | ||
My hypotheses were: | My hypotheses were: | ||
Line 105: | Line 63: | ||
The third hypothesis was also disproven. I think the reason that this is is due to the processing overhead of making decisions in ASIA. The cell must make an observation, | The third hypothesis was also disproven. I think the reason that this is is due to the processing overhead of making decisions in ASIA. The cell must make an observation, | ||
+ | |||
+ | ===== Inspirations ===== | ||
+ | This project has had many inspirations. In the spirit of evolution, I like to think of the traits from these projects as being a part of the genetic history for ArchEvo. :D | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[ https:// | ||
+ | |||
+ | ===== More information ===== | ||
+ | This article was meant to be succinct, so a lot of details were skipped over. Please take a look at these articles for more in-depth information. | ||
+ | * [[ISA]] | ||
+ | * [[ASIA]] | ||
+ | * [[CombatHandler]] | ||
+ | * [[CaptureTheFlag]] | ||
+ | * [[CaptureTheFlagPercentage]] | ||
+ | * [[ReproductionHandler]] | ||
+ | * [[SetCost]] | ||
+ | |||
+ |
projects/archevo/archevo.1618849926.txt.gz · Last modified: 2021/04/19 16:32 by Owen Mellema