Kommentare und Einrückungen angepasst

This commit is contained in:
Jonny007-MKD 2013-12-17 20:15:21 +01:00
parent 359b7beef5
commit 3cc7a534d0

View file

@ -23,12 +23,10 @@ public:
// Konstruktor // Konstruktor
KV(PrimImplikantCollection* globalPic, CellCollection* allCells, uint size, vector<string>* &variables) KV(PrimImplikantCollection* globalPic, CellCollection* allCells, uint size, vector<string>* &variables)
: edgeLength(size), numVarX(((uint)floor(dimension / 2.0f))), numVarY(((uint)ceil(dimension / 2.0f))), : edgeLength(size),
numVarX(((uint)floor(dimension / 2.0f))), numVarY(((uint)ceil(dimension / 2.0f))),
numFieldX((uint)pow(2, (float)numVarX)), numFieldY((uint)pow(2, (float)numVarY)) numFieldX((uint)pow(2, (float)numVarX)), numFieldY((uint)pow(2, (float)numVarY))
{ {
this->globalPic = globalPic; this->globalPic = globalPic;
this->allCells = allCells; this->allCells = allCells;
this->variables = variables; this->variables = variables;
@ -58,7 +56,7 @@ private:
uint VarX_Length; // Höhe der Variablen in X-Richtung in Pixeln uint VarX_Length; // Höhe der Variablen in X-Richtung in Pixeln
uint VarY_Length; // Breite der Variablen in Y-Richtung in Pixeln uint VarY_Length; // Breite der Variablen in Y-Richtung in Pixeln
string string_VarX; // Variables_String in X-Richtung string string_VarX; // Variables_String in X-Richtung
string string_VarY; // Variables_String in Y_Richtung string string_VarY; // Variables_String in Y-Richtung
void Setstring_Var(); // Einfuegen von String_Varx & String_VarY mit Variables. void Setstring_Var(); // Einfuegen von String_Varx & String_VarY mit Variables.
void PrintRaster(); // Erstellt die Felder void PrintRaster(); // Erstellt die Felder