#pragma once #include #include #include class dataTest { private: /* struct for storing a calculated solution*/ struct solution { public: solution(int n, double objectiveFunctionValue = 0.0): bits(n), objectiveFunctionValue(objectiveFunctionValue){} std::vector bits; double objectiveFunctionValue; QString toQString(); }; public: std::vector entrys = std::vector(); /* Contructor of this test class*/ dataTest(); ~dataTest(); };