dignea  1.0.0
Diverse Instance Generator with Novelty Search and Evolutionary Algorithms
PisPerformance.h
Go to the documentation of this file.
1 
11 #ifndef DIGNEA_PISPERFORMANCE_H
12 #define DIGNEA_PISPERFORMANCE_H
13 
14 #include "InstanceFitness.h"
15 
21  public:
22  PisPerformance() = default;
23 
24  virtual ~PisPerformance() = default;
35  float compute(const vector<float> &solutions) const override;
36 };
37 
38 #endif // DIGNEA_PISPERFORMANCE_H
Interface to define the fitness calculation of the instances evolved by EIG.
Definition: InstanceFitness.h:17
Easy Instance fitness computation. This class extends InstanceFitness.
Definition: PisPerformance.h:20
float compute(const vector< float > &solutions) const override
Computes the performance fitness of an instance based on the performance of different solvers....
Definition: PisPerformance.cpp:24