Files
DEC/individual/genome/strategies/KolchShindyal/KolchShindyalPhenToFitnessStrategy.h
2024-10-03 18:43:04 +07:00

8 lines
229 B
C++

#pragma once
#include "../PhenotypeToFitnessStrategy.h"
#include "../../../Phenotype.h"
class KolchShindyalPhenToFitnessStrategy : public PhenotypeToFitnessStrategy {
virtual double calculateFitness(Phenotype* phen);
};