/****************************************************************************/ /* (C) Copyright 1993 Universidade Estadual de Campinas (UNICAMP) */ /* Campinas, SP, Brazil */ /* */ /* This file can be freely distributed, modified, and used for any */ /* non-commercial purpose, provided that this copyright and authorship */ /* notice be included in any copy or derived version of this file. */ /* */ /* DISCLAIMER: This software is offered ``as is'', without any guarantee */ /* as to fitness for any particular purpose. Neither the copyright */ /* holder nor the authors or their employers can be held responsible for */ /* any damages that may result from its use. */ /****************************************************************************/ char *aat_gtag = "gsqr"; char *aat_gname = "g(x) = sqr(x)"; Float aat_g_flt (Float x) { ROUND_NEAR; return(x*x); } Interval aat_g_ia (Interval x) { return (ia_sqr(x)); } AAP aat_g_aa (AAP x) { return (aa_sqr(x)); } Interval aat_gxd = {-Two, Two}; Interval aat_gyd = {-One, One+Four}; int aat_gn = 16;