├── AUTHORS ├── COPYING ├── COPYING.LESSER ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── README.md ├── configure.ac ├── doc ├── arpra.texi ├── arpra_logo.svg └── fdl-1.3.texi ├── extra ├── henon_map.c ├── henon_map_mpfi.c ├── hodgkin_huxley.c ├── morris_lecar.c ├── morris_lecar_mpfi.c └── morris_lecar_mpfr.c ├── include ├── arpra.h └── arpra_ode.h ├── m4 └── .gitkeep ├── src ├── add.c ├── arpra-impl.h ├── clear.c ├── default_precision.c ├── div.c ├── exp.c ├── ext_mpfr.c ├── get_bounds.c ├── get_mpfi.c ├── helper_affine_1.c ├── helper_affine_2.c ├── helper_buffer.c ├── helper_check_result.c ├── helper_clear_terms.c ├── helper_compute_range.c ├── helper_mix_trim.c ├── helper_mpfr_rnderr.c ├── helper_symbol.c ├── increase.c ├── init.c ├── internal_precision.c ├── inv.c ├── log.c ├── mpfr_fn.c ├── mul.c ├── neg.c ├── ode_bogsham32.c ├── ode_dopri54.c ├── ode_dopri87.c ├── ode_euler.c ├── ode_stepper.c ├── ode_trapezoidal.c ├── precision.c ├── predicates.c ├── range_method.c ├── reduce_last_n.c ├── reduce_small.c ├── set.c ├── set_mpfi.c ├── set_special.c ├── sqrt.c ├── sub.c └── sum.c └── tests ├── arpra-test.h ├── bivariate.c ├── compare_arpra.c ├── fixture.c ├── logfile.c ├── logfile_mpfi.c ├── logfile_mpfr.c ├── logfile_printf.c ├── rand.c ├── rand_arpra.c ├── rand_mpfr.c ├── share_syms.c ├── t_add.c ├── t_div.c ├── t_exp.c ├── t_inv.c ├── t_log.c ├── t_mul.c ├── t_neg.c ├── t_sqrt.c ├── t_sub.c └── univariate.c /AUTHORS: -------------------------------------------------------------------------------- 1 | James Paul Turner Main Author 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/arpra.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/doc/arpra.texi -------------------------------------------------------------------------------- /doc/arpra_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/doc/arpra_logo.svg -------------------------------------------------------------------------------- /doc/fdl-1.3.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/doc/fdl-1.3.texi -------------------------------------------------------------------------------- /extra/henon_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/extra/henon_map.c -------------------------------------------------------------------------------- /extra/henon_map_mpfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/extra/henon_map_mpfi.c -------------------------------------------------------------------------------- /extra/hodgkin_huxley.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/extra/hodgkin_huxley.c -------------------------------------------------------------------------------- /extra/morris_lecar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/extra/morris_lecar.c -------------------------------------------------------------------------------- /extra/morris_lecar_mpfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/extra/morris_lecar_mpfi.c -------------------------------------------------------------------------------- /extra/morris_lecar_mpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/extra/morris_lecar_mpfr.c -------------------------------------------------------------------------------- /include/arpra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/include/arpra.h -------------------------------------------------------------------------------- /include/arpra_ode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/include/arpra_ode.h -------------------------------------------------------------------------------- /m4/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/m4/.gitkeep -------------------------------------------------------------------------------- /src/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/add.c -------------------------------------------------------------------------------- /src/arpra-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/arpra-impl.h -------------------------------------------------------------------------------- /src/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/clear.c -------------------------------------------------------------------------------- /src/default_precision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/default_precision.c -------------------------------------------------------------------------------- /src/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/div.c -------------------------------------------------------------------------------- /src/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/exp.c -------------------------------------------------------------------------------- /src/ext_mpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/ext_mpfr.c -------------------------------------------------------------------------------- /src/get_bounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/get_bounds.c -------------------------------------------------------------------------------- /src/get_mpfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/get_mpfi.c -------------------------------------------------------------------------------- /src/helper_affine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/helper_affine_1.c -------------------------------------------------------------------------------- /src/helper_affine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/helper_affine_2.c -------------------------------------------------------------------------------- /src/helper_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/helper_buffer.c -------------------------------------------------------------------------------- /src/helper_check_result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/helper_check_result.c -------------------------------------------------------------------------------- /src/helper_clear_terms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/helper_clear_terms.c -------------------------------------------------------------------------------- /src/helper_compute_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/helper_compute_range.c -------------------------------------------------------------------------------- /src/helper_mix_trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/helper_mix_trim.c -------------------------------------------------------------------------------- /src/helper_mpfr_rnderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/helper_mpfr_rnderr.c -------------------------------------------------------------------------------- /src/helper_symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/helper_symbol.c -------------------------------------------------------------------------------- /src/increase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/increase.c -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/init.c -------------------------------------------------------------------------------- /src/internal_precision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/internal_precision.c -------------------------------------------------------------------------------- /src/inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/inv.c -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/log.c -------------------------------------------------------------------------------- /src/mpfr_fn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/mpfr_fn.c -------------------------------------------------------------------------------- /src/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/mul.c -------------------------------------------------------------------------------- /src/neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/neg.c -------------------------------------------------------------------------------- /src/ode_bogsham32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/ode_bogsham32.c -------------------------------------------------------------------------------- /src/ode_dopri54.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/ode_dopri54.c -------------------------------------------------------------------------------- /src/ode_dopri87.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/ode_dopri87.c -------------------------------------------------------------------------------- /src/ode_euler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/ode_euler.c -------------------------------------------------------------------------------- /src/ode_stepper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/ode_stepper.c -------------------------------------------------------------------------------- /src/ode_trapezoidal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/ode_trapezoidal.c -------------------------------------------------------------------------------- /src/precision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/precision.c -------------------------------------------------------------------------------- /src/predicates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/predicates.c -------------------------------------------------------------------------------- /src/range_method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/range_method.c -------------------------------------------------------------------------------- /src/reduce_last_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/reduce_last_n.c -------------------------------------------------------------------------------- /src/reduce_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/reduce_small.c -------------------------------------------------------------------------------- /src/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/set.c -------------------------------------------------------------------------------- /src/set_mpfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/set_mpfi.c -------------------------------------------------------------------------------- /src/set_special.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/set_special.c -------------------------------------------------------------------------------- /src/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/sqrt.c -------------------------------------------------------------------------------- /src/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/sub.c -------------------------------------------------------------------------------- /src/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/src/sum.c -------------------------------------------------------------------------------- /tests/arpra-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/arpra-test.h -------------------------------------------------------------------------------- /tests/bivariate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/bivariate.c -------------------------------------------------------------------------------- /tests/compare_arpra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/compare_arpra.c -------------------------------------------------------------------------------- /tests/fixture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/fixture.c -------------------------------------------------------------------------------- /tests/logfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/logfile.c -------------------------------------------------------------------------------- /tests/logfile_mpfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/logfile_mpfi.c -------------------------------------------------------------------------------- /tests/logfile_mpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/logfile_mpfr.c -------------------------------------------------------------------------------- /tests/logfile_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/logfile_printf.c -------------------------------------------------------------------------------- /tests/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/rand.c -------------------------------------------------------------------------------- /tests/rand_arpra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/rand_arpra.c -------------------------------------------------------------------------------- /tests/rand_mpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/rand_mpfr.c -------------------------------------------------------------------------------- /tests/share_syms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/share_syms.c -------------------------------------------------------------------------------- /tests/t_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/t_add.c -------------------------------------------------------------------------------- /tests/t_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/t_div.c -------------------------------------------------------------------------------- /tests/t_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/t_exp.c -------------------------------------------------------------------------------- /tests/t_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/t_inv.c -------------------------------------------------------------------------------- /tests/t_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/t_log.c -------------------------------------------------------------------------------- /tests/t_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/t_mul.c -------------------------------------------------------------------------------- /tests/t_neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/t_neg.c -------------------------------------------------------------------------------- /tests/t_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/t_sqrt.c -------------------------------------------------------------------------------- /tests/t_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/t_sub.c -------------------------------------------------------------------------------- /tests/univariate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpra-project/arpra/HEAD/tests/univariate.c --------------------------------------------------------------------------------