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.

31 lines
520 B

15 years ago
#ifndef LOGISTIC_HPP
#define LOGISTIC_HPP
15 years ago
#include <cassert>
15 years ago
#include "../AttractorKernel.hpp"
#include "BasicKernel.h"
15 years ago
class Logistic : public BasicKernel {
15 years ago
unsigned int dimension;
void init();
public:
15 years ago
Logistic();
Logistic(const unsigned int dimension);
virtual void iterate();
15 years ago
virtual void * getProperty(const string identifier);
virtual void setProperty(const string identifier, const void * value);
virtual unsigned int getNumberOfParameters();
15 years ago
};
#endif // LOGISTIC_HPP