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.
23 lines
448 B
23 lines
448 B
#ifndef POLYNOMIAL_HPP
|
|
#define POLYNOMIAL_HPP
|
|
|
|
#include "../AttractorKernel.hpp"
|
|
|
|
class Polynomial : public AttractorKernel {
|
|
private:
|
|
|
|
unsigned int orde;
|
|
|
|
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);
|
|
|
|
virtual void operator()();
|
|
|
|
};
|
|
|
|
#endif // POLYNOMIAL_HPP
|
|
|
|
|