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
266 B

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