00001 00020 #ifndef _PROBLEM_SoftComputing_H 00021 00022 #define _PROBLEM_SoftComputing_H 1 00023 00024 #include <realea/common/problemfactory.h> 00025 00026 namespace realea { 00027 00028 class ProblemSoftComputing : public ProblemFactory { 00029 public: 00030 ProblemSoftComputing(unsigned int dim); 00031 ~ProblemSoftComputing(void); 00032 ProblemPtr get(unsigned int ident=1); 00033 private: 00034 unsigned int m_ndim; 00035 }; 00036 00037 } 00038 00039 #endif