implemented #1 layer

everything with the excemtion of image recogniation in preprocessing should be fully implemented. Can now begin deleting all legacy  code.
This commit is contained in:
Raphael Maenle
2017-12-20 17:35:52 +01:00
parent 507533531c
commit c885e472fb
2 changed files with 31 additions and 12 deletions

View File

@ -10,11 +10,12 @@
#include <vector>
#include <iostream>
#include <bitset>
#include <random>
class AbstractionLayer_1 : public AbstraktionLayer_Base<AbstractionLayer_1_Properties>
{
public:
void PreProcessing(const vector<Part*>* partArray);
void PreProcessing(const vector<Part*>* partArray);//override
bool EvalueteQuality (const coor constraintCoordinate, qualityVector& qVector);
bool SetConstraintOnPosition(const coor constraintCoordinate, const AbstractionLayer_1_Properties constraint);
bool RemoveConstraintOnPosition(const coor constraintCoordinate);
@ -24,6 +25,7 @@ public:
bool CreateRandomPuzzle();
qualityVector returnInBox(vector<Part>& PuzzleBox);
private:
};