diff options
author | Ian Jauslin <ian.jauslin@roma1.infn.it> | 2015-10-07 12:51:41 +0000 |
---|---|---|
committer | Ian Jauslin <ian.jauslin@roma1.infn.it> | 2015-10-07 13:00:23 +0000 |
commit | 469bdc80712dbf9c12562059dc4594620b59a076 (patch) | |
tree | c6da40a884899110d102d82a7a778f2b3afae702 /src/flow.h | |
parent | e7aa6859f08565d58684fa4b9c40fed716f0ba17 (diff) |
Support MPFR floats in numkondov1.4
Remove '-D' option (error tolerance) in numkondo
Diffstat (limited to 'src/flow.h')
-rw-r--r-- | src/flow.h | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -21,14 +21,12 @@ Compute flow numerically #ifndef NUMERICAL_FLOW_H #define NUMERICAL_FLOW_H - -#include "grouped_polynomial.h" -#include "rcc.h" +#include "types.h" // compute flow -int numerical_flow(Grouped_Polynomial flow_equation, RCC init, Labels labels, int niter, long double tol, int display_mode); +int numerical_flow(Grouped_Polynomial flow_equation, RCC init, Labels labels, int niter, int display_mode); // single step -int step_flow(RCC* rccs, Grouped_Polynomial flow_equation, long double tol); +int step_flow(RCC* rccs, Grouped_Polynomial flow_equation); // print the label of an rcc (takes constants and derivatives into account) int print_label(int index, Labels labels); |