8 lines
229 B
C++
8 lines
229 B
C++
#pragma once
|
|
#include "../PhenotypeToFitnessStrategy.h"
|
|
#include "../../../Phenotype.h"
|
|
|
|
class KolchShindyalPhenToFitnessStrategy : public PhenotypeToFitnessStrategy {
|
|
virtual double calculateFitness(Phenotype* phen);
|
|
};
|