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.

36 lines
770 B

#ifndef POLYNOMIAL_HPP
#define POLYNOMIAL_HPP
14 years ago
#include <cassert>
14 years ago
#include <iostream>
14 years ago
#include "../AttractorKernel.hpp"
#include "BasicKernel.h"
class Polynomial : public BasicKernel {
unsigned int dimension;
unsigned int orde;
unsigned int numberOfParameters;
void init();
void calculateNumberOfParameters();
14 years ago
void recur(unsigned int curr_dimension, unsigned int prev_i, unsigned int n, unsigned int& m, double prev_product=1.0);
public:
Polynomial();
Polynomial(const unsigned int dimensions, const unsigned int orde);
14 years ago
void iterate();
14 years ago
void * getProperty(const string identifier);
void setProperty(const string identifier, const void * value);
unsigned int getNumberOfParameters();
};
#endif // POLYNOMIAL_HPP