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.
37 lines
740 B
37 lines
740 B
#ifndef BASICKERNEL_HPP
|
|
#define BASICKERNEL_HPP
|
|
|
|
#include <iostream>
|
|
|
|
#include "../AttractorKernel.hpp"
|
|
|
|
|
|
/*
|
|
A basic abstract implementatoin of the AttractorKernel, should
|
|
be used to avoid copying the same stuff in all attractorKernels
|
|
*/
|
|
class BasicKernel : public AttractorKernel {
|
|
protected:
|
|
|
|
double * myParameters;
|
|
|
|
double * vectorNew;
|
|
double * vectorOld;
|
|
|
|
public:
|
|
|
|
BasicKernel();
|
|
|
|
// 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
|
|
|
|
|