-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Impl, test ReplicateDemesHighestFecundity
This criterion prevents demes from gaming ReplicateDemesHighestBirthCount by spamming nonviable offspring
- Loading branch information
Showing
14 changed files
with
1,382 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
689 changes: 689 additions & 0 deletions
689
avida-core/tests/demes_ReplicateDemesHighestFecundity/config/avida.cfg
Large diffs are not rendered by default.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
avida-core/tests/demes_ReplicateDemesHighestFecundity/config/detailgermlines-500.sgerm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#filetype germline_data | ||
#format deme_id hw_type inst_set sequence deme_birth_count deme_parasite_memory_score | ||
# Mode 1 Germline Save | ||
# Tue Aug 29 01:14:50 2023 | ||
# 1: Deme ID | ||
# 2: Hardware Type ID | ||
# 3: Inst Set Name | ||
# 4: Genome Sequence | ||
# 5: Deme Birth Count | ||
# 6: Deme Parasite Memory Score | ||
|
||
0 2 transsmt ycdBCiEdimFjfCDaknmsAjempczypqvcrGxab 42 24.8 | ||
1 2 transsmt ycdBCiEdimFjfCDaknmsAjemEEcgccgssmhEEcsdseDcAcBcggclEEcDEgcvrsAmlzessjhcdcggkhamtmciEEvjDdhjidzoAyndvmEdbgznjDmcjohohooayaxdyalbcekzebjcogEtjgjacblDvubADnslyyocgsAcjCbobffhmvnnAdbDfkmxcagBFfndytqhutjdzfdjsnflfoqCwcvhsjcvbmlsqcjrgyiDivvnFhrArcsmifbClvluDqmCBbtiDhiEfACcarpEczijdljujACbfzuDEFyaqqekizDosbbzjgmpczypqvcrGxab 33 24.8 | ||
1 2 transsmt ycdBCiEdimFjfCDaknmsAjemEEcgccgssmhEEcsdseDcAcBcggclEEcDEgcvrsAmlzessjhcdcggkhamtmciEEvjDdhjidzoAyndvmEdbgznjDmcjohohooayaxdyalbcekzebjcogEtjgjacblDvubADnslyyocgsAcjCbobffhmvnnAdbDfkmxcagBFfndytqhutjdzfdjsnflfoqCwcvhsjcvbmlsqcjrgyiDivvnFhrArcsmifbClvluDqmCBbtiDhiEfACcarpEczijdljujACbfzuDEFyaqqekizDosbbzjgmpczypqvcrGxab 33 24.8 |
9 changes: 9 additions & 0 deletions
9
avida-core/tests/demes_ReplicateDemesHighestFecundity/config/environment.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
REACTION NOT not process:value=1.0:type=pow requisite:max_count=1 | ||
REACTION NAND nand process:value=1.0:type=pow requisite:max_count=1 | ||
REACTION AND and process:value=2.0:type=pow requisite:max_count=1 | ||
REACTION ORN orn process:value=2.0:type=pow requisite:max_count=1 | ||
REACTION OR or process:value=3.0:type=pow requisite:max_count=1 | ||
REACTION ANDN andn process:value=3.0:type=pow requisite:max_count=1 | ||
REACTION NOR nor process:value=4.0:type=pow requisite:max_count=1 | ||
REACTION XOR xor process:value=4.0:type=pow requisite:max_count=1 | ||
REACTION EQU equ process:value=5.0:type=pow requisite:max_count=1 |
9 changes: 9 additions & 0 deletions
9
avida-core/tests/demes_ReplicateDemesHighestFecundity/config/events.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
u begin InjectAll filename=evolved-not.org | ||
u begin LoadGermlines detailgermlines-500.sgerm | ||
u begin LoadBirthCounts detailgermlines-500.sgerm | ||
u begin SavePopulation | ||
u begin SaveGermlines filename=evolved.sgerm:birthcounts=1 | ||
u 2 ReplicateDemesHighestFecundity 1.0 1 | ||
u 2 SaveGermlines filename=evolved.sgerm:birthcounts=1 | ||
u 2 SavePopulation | ||
u 3 Exit |
Oops, something went wrong.