/* Defines AA, IA, and FP implementations of some test functions. */ /* Last edited on 2007-01-04 00:12:38 by stolfi */ #ifndef aaiafuncs_H #define aaiafuncs_H #include #include #include Float g_fp (Float x); Interval g_ia (Interval x); AAP g_aa (AAP x); /* AA/IA function with large overestimation. */ Float gg_fp (Float x); Interval gg_ia (Interval x); AAP gg_aa (AAP x); /* Iterated AA/IA function with error explosion. */ Float sqrt_fp (Float x); Interval sqrt_ia (Interval x); AAP sqrt_aa (AAP x); /* AA/IA square root function. */ #endif