File: my_rhs.h

package info (click to toggle)
xppaut 6.11b%2B1.dfsg-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 13,504 kB
  • sloc: ansic: 91,694; makefile: 167
file content (17 lines) | stat: -rw-r--r-- 419 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _my_rhs_h_
#define _my_rhs_h_


/* my_rhs.c */
int MAIN__(void);
int main(int argc, char **argv);
void extra(double *y__y, double t, int nod, int neq);
void set_fix_rhs(double t, double *y);
int my_rhs(double t, double *y, double *ydot, int neq);
void update_based_on_current(void);
void fix_only(void);
void rhs_only(double *y, double *ydot);
void vec_rhs(double t, double *y, double *ydot, int neq);


#endif