21 lines
266 B
21 lines
266 B
#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
|
|
|
|
|