Init version

This commit is contained in:
2024-10-03 18:43:04 +07:00
commit f80052961f
186 changed files with 71676 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include "InOutBreedingPhenToFitStrategy.h"
#include "../../../Phenotype.h"
double InOutBreedingPhenToFitStrategy::calculateFitness(Phenotype *phen){
double ans = 0.0;
ans = phen->getTraitByName("coadaptive").getTraitValueCont();
//float coef = phen->getTraitByName("disease")
return ans;
}