30 |
|
|
31 |
#ifdef ASC_WITH_IDA |
#ifdef ASC_WITH_IDA |
32 |
|
|
33 |
/* Perform IDA integration of a specified 'Integ_system'.*/ |
IntegratorCreateFn integrator_ida_create; |
|
ASC_DLLSPEC(int) integrator_ida_solve(IntegratorSystem *blsys |
|
|
, unsigned long start_index, unsigned long finish_index |
|
|
); |
|
|
|
|
|
ASC_DLLSPEC(void) integrator_ida_free(void *enginedata); |
|
|
|
|
|
ASC_DLLSPEC(void) integrator_ida_create(IntegratorSystem *blsys); |
|
|
|
|
34 |
IntegratorParamsDefaultFn integrator_ida_params_default; |
IntegratorParamsDefaultFn integrator_ida_params_default; |
35 |
|
IntegratorSolveFn integrator_ida_solve; |
36 |
|
IntegratorFreeFn integrator_ida_free; |
37 |
|
|
38 |
|
const IntegratorInternals integrator_ida_internals; |
39 |
|
|
40 |
#endif |
#endif |
41 |
|
|