/* plot-test.c -- Plot tests of IA and AA */ /* Last edited on 2003-01-02 03:51:18 by stolfi */ #include #include #include #include #include "allgraphs.h" #include #include /*** INTERNAL PROTOTYPES ***/ int main(void); Float aat_g_flt (Float x); Interval aat_g_ia (Interval x); AAP aat_g_aa (AAP x); extern char *aat_gname; extern char *aat_gtag; extern Interval aat_gxd, aat_gyd; /* FUNCTION must be defined externally, in the compile command line: */ #define FUNCTIONC #include FUNCTIONC /*** MAIN PROGRAM ***/ int main(void) { int epsformat; aa_init(); for (epsformat = 0; epsformat < 2; epsformat++) { allgraphs_plot ( txtcat("plot-test-", aat_gtag), epsformat, aat_gname, aat_g_flt, aat_g_ia, aat_g_aa, aat_gxd.lo, aat_gxd.hi, aat_gyd.lo, aat_gyd.hi, aat_gn, 512 ); } return (0); }