1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
awesome-attractor/kernels/Logistic.hpp
2010-11-13 20:41:02 +01:00

21 lines
266 B
C++

#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