#ifndef POLYNOMIALA3D_HPP #define POLYNOMIALA3D_HPP #include #include "../AttractorKernel.hpp" #include "BasicKernel.h" class PolynomialA3D : public BasicKernel { // of course this can be seen as a subclasse of Polynomial void init(); public: PolynomialA3D(); void iterate(); void * getProperty(const string identifier); void setProperty(const string identifier, const void * value); unsigned int getNumberOfParameters(); }; #endif // POLYNOMIALA3D_HPP