accelerInt  v0.1
dydt.cuh
Go to the documentation of this file.
1 
7 #ifndef DYDT_CUH
8 #define DYDT_CUH
9 
10 #ifdef GENERATE_DOCS
11 //put this in the van der Pol namespace for documentation
12 namespace van_der_pol_cu {
13 #endif
14 
15 
16 
26 __device__
27 void dydt (const double t, const double mu, const double * __restrict__ y, double * __restrict__ dy,
28  const mechanism_memory * __restrict__ d_mem);
29 
30 #ifdef GENERATE_DOCS
31 }
32 #endif
33 
34 #endif
__device__ void dydt(const double t, const double mu, const double *__restrict__ y, double *__restrict__ dy, const mechanism_memory *__restrict__ d_mem)
An implementation of the RHS of the van der Pol equation.
Definition: dydt.cu:24