init
This commit is contained in:
19
src/Problem
Normal file
19
src/Problem
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef _P_H_
|
||||
#define _P_H_
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace S
|
||||
{
|
||||
class Problem
|
||||
{
|
||||
public:
|
||||
Problem();
|
||||
operator std::vector<bool>() const;
|
||||
protected:
|
||||
virtual std::vector<bool> representation() const =0;
|
||||
private:
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user