evaluate abstract method

Future<R> evaluate(
  1. P phenotype
)

Takes the phenotype and returns its fitness score. The lower the fitness score, the better the phenotype. Fitness score of 0.0 means that the phenotype is perfect.

Implementation

Future<R> evaluate(P phenotype);