#ifndef CLASS_PROBLEM #define CLASS_PROBLEM #include #include class clause { public: struct bundle { unsigned variable; bool value; }; public: list bundles; }; class problem { public: unsigned number_of_variables; list> clauses; public: problem(unsigned); }; #endif