accelerInt  v0.1
dydt.h
Go to the documentation of this file.
1 
7 #ifndef DYDT_H
8 #define DYDT_H
9 
10 #ifdef GENERATE_DOCS
11 //put this in the van der Pol namespace for documentation
12 namespace van_der_pol {
13 #endif
14 
15 
16 
24 void dydt (const double t, const double mu, const double * __restrict__ y, double * __restrict__ dy);
25 
26 #ifdef GENERATE_DOCS
27 }
28 #endif
29 
30 #endif
void dydt(const double t, const double mu, const double *__restrict__ y, double *__restrict__ dy)
An implementation of the RHS of the van der Pol equation.
Definition: dydt.c:22