Clean up project

Remove unnecessary files and change fitness value to unsigned long long.
This commit is contained in:
Joscha 2017-04-27 05:45:46 +00:00
parent d38e45dac8
commit 15640c9656
4 changed files with 4 additions and 66 deletions

View file

@ -8,11 +8,10 @@
class Fitness
{
public:
Fitness();
Fitness(sf::Texture target, float scale=0.5);
Fitness(sf::Texture target, float scale=1);
bool loadShader(std::string filename);
double of(Chromosome chr);
unsigned long long of(Chromosome chr);
sf::Texture target; // base image to compare against
sf::RenderTexture tex; // big RenderWindow containg the Chromosome to be evaluated