1 |
johnpye |
1239 |
#ifndef ASC_IDAANALYSE_H |
2 |
|
|
#define ASC_IDAANALYSE_H |
3 |
|
|
|
4 |
|
|
#include "integrator.h" |
5 |
|
|
|
6 |
|
|
IntegratorAnalyseFn integrator_ida_analyse; /* for new approach -- JP Jan 2007 */ |
7 |
|
|
|
8 |
|
|
int integrator_ida_diffindex(const IntegratorSystem *sys, const struct var_variable *deriv); |
9 |
|
|
|
10 |
|
|
int integrator_ida_analyse_debug(const IntegratorSystem *sys,FILE *fp); |
11 |
|
|
|
12 |
johnpye |
1240 |
/** |
13 |
|
|
Filter that will match all our 'y' variables (and only those) |
14 |
|
|
*/ |
15 |
|
|
const var_filter_t integrator_ida_filter_nonderiv; |
16 |
|
|
|
17 |
|
|
/* |
18 |
|
|
Filter that will match all our 'ydot' variables (and only those) |
19 |
|
|
*/ |
20 |
|
|
const var_filter_t integrator_ida_filter_deriv; |
21 |
|
|
|
22 |
johnpye |
1239 |
#endif |