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.
33 lines
555 B
33 lines
555 B
#ifndef UNRAVEL_HPP
|
|
#define UNRAVEL_HPP
|
|
|
|
#include <iostream>
|
|
#include <cstdlib>
|
|
#include <cassert>
|
|
#include <string>
|
|
#include <cmath>
|
|
using namespace std;
|
|
|
|
#include "../AttractorKernel.hpp"
|
|
#include "BasicKernel.h"
|
|
|
|
class Unravel3D : public BasicKernel {
|
|
|
|
void init();
|
|
|
|
public:
|
|
|
|
Unravel3D();
|
|
Unravel3D(const unsigned int dimensions);
|
|
|
|
|
|
void iterate();
|
|
|
|
void * getProperty(const string identifier);
|
|
void setProperty(const string identifier, const void * value);
|
|
unsigned int getNumberOfParameters();
|
|
|
|
};
|
|
|
|
#endif // UNRAVEL_HPP
|
|
|
|
|