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 18:47] – 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:// | ||
+ | |||
**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. The ArchEvo program has had two distinct versions, and parts of it have been written in C++, Java, React/ | **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. The ArchEvo program has had two distinct versions, and parts of it have been written in C++, Java, React/ | ||
===== Model ===== | ===== Model ===== | ||
- | //See main article, [[projects: | + | //See main article, [[projects: |
Cells are virtual machines that have a program and eight registers. The program is translated by the [[ projects: | Cells are virtual machines that have a program and eight registers. The program is translated by the [[ projects: | ||
- | ===== ISA ===== | + | ===== Evolvable |
//See main article, [[projects: | //See main article, [[projects: | ||
Line 15: | Line 17: | ||
To be evolvable, there are two important requirements. Firstly, the ISA must be faultless. That is, all possible instructions should be valid. Secondly, it should be structurally robust. Structural robustness mainly refers to jumps. In normal ISAs, jump instructions jump to certain labels, but that is hard to evolve. Some other nice features that we want are the ability to inspect other cells, and a limited number of bits per instruction. | To be evolvable, there are two important requirements. Firstly, the ISA must be faultless. That is, all possible instructions should be valid. Secondly, it should be structurally robust. Structural robustness mainly refers to jumps. In normal ISAs, jump instructions jump to certain labels, but that is hard to evolve. Some other nice features that we want are the ability to inspect other cells, and a limited number of bits per instruction. | ||
- | The ISA ASIA accomplishes these goals with some clever tricks. | + | [[ projects: |
- | * Ghost Bits: Instructions that would cause a permissions fault are interpreted as different instructions that would not cause a permissions fault. This way, 3 bits of opcode maps to 16 possible instructions. | + | * [[isa# |
- | * Template Jumps: instead of jumping to labels, jump to groups of instructions. ((I actually borrowed this from TIERRA)) | + | * [[isa# |
- | * IPLOC: The most significant bit of a certain register (known as the **I**nspection **P**ointer **LOC**ation, | + | * [[isa#IPLOC]]: The most significant bit of a certain register (known as the **I**nspection **P**ointer **LOC**ation, |
===== Implementations ===== | ===== Implementations ===== | ||
Line 26: | 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 49: | 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 61: | 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.1618858064.txt.gz · Last modified: 2021/04/19 18:47 by Owen Mellema