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-07-19 22:02:17 +02:00

22 lines
340 B
C++

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