NEDISS: Network Diffusion and Synchronization Simulator
NoiselessKuramoto.h
1//
2// Created by m4zz31 on 2/11/21.
3//
4
5#ifndef CPPPROJCT_NOISELESSKURAMOTO_H
6#define CPPPROJCT_NOISELESSKURAMOTO_H
7
8#include "GeneralDifferentialEquation.h"
9
11public:
13
14 bool requiresCom(int d);
15
16 void Field(double t, double a, std::vector<double> &b,
17 std::vector<double> &c,
18 std::vector<double> &d);
19
20 void d1Field(double t, double a, std::vector<double> &b,
21 std::vector<double> &c,
22 std::vector<double> &d);
23
24 void d2Field(double t, double a, std::vector<double> &b,
25 std::vector<double> &c,
26 std::vector<double> &d);
27
28 void d3Field(double t, double a, std::vector<double> &b,
29 std::vector<double> &c,
30 std::vector<double> &d);
31};
32
33#endif //CPPPROJCT_NOISELESSKURAMOTO_H
Definition: GeneralDifferentialEquation.h:32
Definition: NoiselessKuramoto.h:10