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.
32 lines
623 B
32 lines
623 B
15 years ago
|
#ifndef BASICKERNEL_HPP
|
||
|
#define BASICKERNEL_HPP
|
||
|
|
||
|
#include <cassert>
|
||
|
#include <iostream>
|
||
|
|
||
|
#include "../AttractorKernel.hpp"
|
||
|
|
||
|
class BasicKernel : public AttractorKernel {
|
||
|
protected:
|
||
|
|
||
|
double * myParameters;
|
||
|
|
||
|
double * vectorNew;
|
||
|
double * vectorOld;
|
||
|
|
||
|
public:
|
||
|
|
||
|
// parameters are stored in a array of doubles
|
||
|
// if you want to use other types, use the properties
|
||
|
virtual double& parameter(const unsigned int index);
|
||
|
virtual double*& parameters();
|
||
|
|
||
|
// getter functions for teh resulta
|
||
|
virtual double * & vector();
|
||
|
virtual double * & previousVector();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // POLYNOMIAL_HPP
|
||
|
|