#ifndef LOGISTIC_HPP #define LOGISTIC_HPP #include "../AttractorKernel.hpp" class Logistic : public AttractorKernel { private: void init(); public: Logistic(); Logistic(const unsigned int dimension); virtual void operator()(); }; #endif // LOGISTIC_HPP