My old project for strange attractors
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

22 lines
268 B

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