This commit is contained in:
2014-10-02 17:52:56 +02:00
commit 8c1b406259
23 changed files with 525 additions and 0 deletions

21
src/Solution Normal file
View File

@@ -0,0 +1,21 @@
#ifndef _SOL_H_
#define _SOL_H_
#include <vector>
#include "Problem"
namespace S
{
class Solution
{
public:
Solution(std::vector<bool> solution);
int size();
bool operator[] (int pos);
operator std::vector<bool>();
protected:
std::vector<bool> solution;
};
}
#endif