00001 00020 #ifndef _PROBLEM_EASY_H 00021 00022 #define _PROBLEM_EASY_H 1 00023 00024 #include "../common/problemfactory.h" 00025 00026 class ProblemEasy : public ProblemFactory { 00027 public: 00028 ProblemEasy(unsigned int dim); 00029 ~ProblemEasy(void); 00030 ConfigProblem *get(unsigned int ident=1); 00031 00032 private: 00033 unsigned int m_ndim; 00034 bool m_init; 00035 }; 00036 00037 00038 00039 #endif