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 17:27] – 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/ | ||
- | ===== The 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: | ||
+ | |||
+ | ===== Evolvable ISA ===== | ||
+ | //See main article, [[projects: | ||
+ | |||
+ | Cells require a special type of ISA known as an // | ||
+ | |||
+ | 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. | ||
+ | |||
+ | [[ projects: | ||
+ | * [[isa# | ||
+ | * [[isa# | ||
+ | * [[isa# | ||
===== Implementations ===== | ===== Implementations ===== | ||
Line 14: | 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 37: | 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 49: | 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.1618853264.txt.gz · Last modified: 2021/04/19 17:27 by Owen Mellema