author | Aleksandar Samardžić <asamardzic@matf.bg.ac.rs> | 2012年09月22日 16:00:43 +0200 |
---|---|---|
committer | Aleksandar Samardžić <asamardzic@matf.bg.ac.rs> | 2012年09月22日 16:00:43 +0200 |
commit | 7a86f33f26ece9b073e0560dc163896eaf1af7cf (patch) | |
tree | 7ab7501565a3d217fb350586ffc2c88317242ffe | |
parent | 116276c45a6c168467ccd8aeadd5a6797a2c559c (diff) | |
download | libmatheval-7a86f33f26ece9b073e0560dc163896eaf1af7cf.tar.gz |
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | configure.in | 8 | ||||
-rw-r--r-- | doc/Makefile.am | 4 | ||||
-rw-r--r-- | doc/libmatheval.texi | 8 | ||||
-rw-r--r-- | lib/Makefile.am | 4 | ||||
-rw-r--r-- | lib/common.h | 4 | ||||
-rw-r--r-- | lib/error.c | 4 | ||||
-rw-r--r-- | lib/error.h | 4 | ||||
-rw-r--r-- | lib/g77_interface.c | 4 | ||||
-rw-r--r-- | lib/matheval.c | 4 | ||||
-rw-r--r-- | lib/matheval.h | 4 | ||||
-rw-r--r-- | lib/node.c | 4 | ||||
-rw-r--r-- | lib/node.h | 4 | ||||
-rw-r--r-- | lib/parser.y | 8 | ||||
-rw-r--r-- | lib/scanner.l | 8 | ||||
-rw-r--r-- | lib/symbol_table.c | 4 | ||||
-rw-r--r-- | lib/symbol_table.h | 4 | ||||
-rw-r--r-- | lib/xmalloc.c | 4 | ||||
-rw-r--r-- | lib/xmalloc.h | 4 | ||||
-rw-r--r-- | lib/xmath.c | 4 | ||||
-rw-r--r-- | lib/xmath.h | 4 | ||||
-rw-r--r-- | libmatheval.pc.in | 6 | ||||
-rw-r--r-- | tests/Makefile.am | 4 | ||||
-rw-r--r-- | tests/basics.at | 4 | ||||
-rw-r--r-- | tests/bin_ops.at | 4 | ||||
-rw-r--r-- | tests/constants.at | 4 | ||||
-rw-r--r-- | tests/functions.at | 4 | ||||
-rw-r--r-- | tests/matheval.c | 4 | ||||
-rw-r--r-- | tests/matheval.sh.in | 4 | ||||
-rw-r--r-- | tests/numbers.at | 4 | ||||
-rw-r--r-- | tests/package.m4 | 4 | ||||
-rw-r--r-- | tests/testsuite.at | 4 | ||||
-rw-r--r-- | tests/un_ops.at | 4 | ||||
-rw-r--r-- | tests/variables.at | 4 |
diff --git a/Makefile.am b/Makefile.am index dddd9a9..f16c2aa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ -# Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 -# Free Software Foundation, Inc. +# Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, +# 2012 Free Software Foundation, Inc. # # This file is part of GNU libmatheval # @@ -1,4 +1,4 @@ -Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 +Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 Aleksandar Samardzic Copying and distribution of this file, with or without modification, are @@ -6,6 +6,12 @@ permitted in any medium without royalty provided the copyright notice and this notice are preserved. +Version 1.1.9 + +* Fixed bug in math_step function implementation. +* Updated manual. + + Version 1.1.8 * Fixed bugs in the Fortran interface. @@ -1,4 +1,4 @@ -Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 +Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 Aleksandar Samardzic Copying and distribution of this file, with or without modification, are diff --git a/configure.in b/configure.in index 088743a..462b448 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ -dnl Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 -dnl Free Software Foundation, Inc. +dnl Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, +dnl 2012 Free Software Foundation, Inc. dnl dnl This file is part of GNU libmatheval dnl @@ -19,11 +19,11 @@ dnl <http://www.gnu.org/licenses/>. dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.53) -AC_INIT([libmatheval],[1.1.8],[asamardzic@gnu.org]) +AC_INIT([libmatheval],[1.1.9],[asamardzic@gnu.org]) AC_CONFIG_AUX_DIR([config]) AC_CONFIG_MACRO_DIR([m4]) AC_SUBST([ac_aux_dir]) -AM_INIT_AUTOMAKE([libmatheval], [1.1.8]) +AM_INIT_AUTOMAKE([libmatheval], [1.1.9]) AC_CONFIG_SRCDIR([configure.in]) AM_CONFIG_HEADER([config.h]) diff --git a/doc/Makefile.am b/doc/Makefile.am index cf810b9..a9ff201 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,5 +1,5 @@ -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # diff --git a/doc/libmatheval.texi b/doc/libmatheval.texi index d159842..1b7cddc 100644 --- a/doc/libmatheval.texi +++ b/doc/libmatheval.texi @@ -17,8 +17,8 @@ @ifnottex This file documents GNU @code{libmatheval} library. -Copyright @copyright{} 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 -Aleksandar Samardzic +Copyright @copyright{} 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, +2012 Aleksandar Samardzic Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or @@ -37,8 +37,8 @@ license is included in the section entitled ``Copying''. @page @vskip 0pt plus 1filll -Copyright @copyright{} 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 -Aleksandar Samardzic +Copyright @copyright{} 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, +2012 Aleksandar Samardzic Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or diff --git a/lib/Makefile.am b/lib/Makefile.am index fa6704f..c8866f8 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,5 +1,5 @@ -# Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 -# Free Software Foundation, Inc. +# Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, +# 2012 Free Software Foundation, Inc. # # This file is part of GNU libmatheval # diff --git a/lib/common.h b/lib/common.h index 89d5813..89ea60d 100644 --- a/lib/common.h +++ b/lib/common.h @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/error.c b/lib/error.c index b6e012d..e7d9f6e 100644 --- a/lib/error.c +++ b/lib/error.c @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/error.h b/lib/error.h index 9e44f62..b4b8773 100644 --- a/lib/error.h +++ b/lib/error.h @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/g77_interface.c b/lib/g77_interface.c index 83202d2..2acd74c 100644 --- a/lib/g77_interface.c +++ b/lib/g77_interface.c @@ -1,6 +1,6 @@ /* - * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free - * Software Foundation, Inc. + * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 + * Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/matheval.c b/lib/matheval.c index e167e25..12a5ffe 100644 --- a/lib/matheval.c +++ b/lib/matheval.c @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/matheval.h b/lib/matheval.h index 5857eb1..367a837 100644 --- a/lib/matheval.h +++ b/lib/matheval.h @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/parser.y b/lib/parser.y index d998e5a..d634592 100644 --- a/lib/parser.y +++ b/lib/parser.y @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * @@ -21,8 +21,8 @@ %{ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * GNU libmatheval is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as diff --git a/lib/scanner.l b/lib/scanner.l index 610cd32..0c60cda 100644 --- a/lib/scanner.l +++ b/lib/scanner.l @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * @@ -21,8 +21,8 @@ %{ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/symbol_table.c b/lib/symbol_table.c index 478668b..6f8e3e8 100644 --- a/lib/symbol_table.c +++ b/lib/symbol_table.c @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/symbol_table.h b/lib/symbol_table.h index 29d2c34..3fc0b77 100644 --- a/lib/symbol_table.h +++ b/lib/symbol_table.h @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/xmalloc.c b/lib/xmalloc.c index aa04f0e..ea740ee 100644 --- a/lib/xmalloc.c +++ b/lib/xmalloc.c @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/xmalloc.h b/lib/xmalloc.h index 6a4bad1..052601c 100644 --- a/lib/xmalloc.h +++ b/lib/xmalloc.h @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/xmath.c b/lib/xmath.c index 1bd5f81..27644dc 100644 --- a/lib/xmath.c +++ b/lib/xmath.c @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/lib/xmath.h b/lib/xmath.h index 4a54db1..07fc3ca 100644 --- a/lib/xmath.h +++ b/lib/xmath.h @@ -1,6 +1,6 @@ /* - * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, + * 2012 Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/libmatheval.pc.in b/libmatheval.pc.in index 1ff58ac..30eeb28 100644 --- a/libmatheval.pc.in +++ b/libmatheval.pc.in @@ -1,5 +1,5 @@ -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # @@ -24,7 +24,7 @@ includedir=@includedir@ Name: libmatheval Description: Library of functions for evaluating mathematical expressions -Version: 1.1.8 +Version: 1.1.9 Libs: -L${libdir} -lmatheval Libs.private: @LEXLIB@ -lm Cflags: -I${includedir} diff --git a/tests/Makefile.am b/tests/Makefile.am index 084e050..9e6bd7d 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,5 +1,5 @@ -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # diff --git a/tests/basics.at b/tests/basics.at index 57756cf..b01b596 100644 --- a/tests/basics.at +++ b/tests/basics.at @@ -1,7 +1,7 @@ # Checking the basics. -*- Autotest -*- -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # diff --git a/tests/bin_ops.at b/tests/bin_ops.at index 5f37cf7..f021021 100644 --- a/tests/bin_ops.at +++ b/tests/bin_ops.at @@ -1,7 +1,7 @@ # Checking the binary operations. -*- Autotest -*- -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # diff --git a/tests/constants.at b/tests/constants.at index 36343b8..c70a7ad 100644 --- a/tests/constants.at +++ b/tests/constants.at @@ -1,7 +1,7 @@ # Checking the constants. -*- Autotest -*- -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # diff --git a/tests/functions.at b/tests/functions.at index c7d74ee..206671b 100644 --- a/tests/functions.at +++ b/tests/functions.at @@ -1,7 +1,7 @@ # Checking the functions. -*- Autotest -*- -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # diff --git a/tests/matheval.c b/tests/matheval.c index 908ac20..023d1dc 100644 --- a/tests/matheval.c +++ b/tests/matheval.c @@ -1,6 +1,6 @@ /* - * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free - * Software Foundation, Inc. + * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 + * Free Software Foundation, Inc. * * This file is part of GNU libmatheval * diff --git a/tests/matheval.sh.in b/tests/matheval.sh.in index 0107f81..d1b1a30 100644 --- a/tests/matheval.sh.in +++ b/tests/matheval.sh.in @@ -2,8 +2,8 @@ # @configure_input@ # Wrapper around a non installed matheval to make it work as an installed one. -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # diff --git a/tests/numbers.at b/tests/numbers.at index aaeaf56..87587f3 100644 --- a/tests/numbers.at +++ b/tests/numbers.at @@ -1,7 +1,7 @@ # Checking the numbers. -*- Autotest -*- -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # diff --git a/tests/package.m4 b/tests/package.m4 index ac69fc4..22a2348 100644 --- a/tests/package.m4 +++ b/tests/package.m4 @@ -1,6 +1,6 @@ # Signature of the current package. m4_define([AT_PACKAGE_NAME], [libmatheval]) m4_define([AT_PACKAGE_TARNAME], [libmatheval]) -m4_define([AT_PACKAGE_VERSION], [1.1.8]) -m4_define([AT_PACKAGE_STRING], [libmatheval 1.1.8]) +m4_define([AT_PACKAGE_VERSION], [1.1.9]) +m4_define([AT_PACKAGE_STRING], [libmatheval 1.1.9]) m4_define([AT_PACKAGE_BUGREPORT], [asamardzic@gnu.org]) diff --git a/tests/testsuite.at b/tests/testsuite.at index c9247a4..e857049 100644 --- a/tests/testsuite.at +++ b/tests/testsuite.at @@ -1,7 +1,7 @@ # Main testsuite file. -*- Autotest -*- -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # diff --git a/tests/un_ops.at b/tests/un_ops.at index 65446d4..d26b854 100644 --- a/tests/un_ops.at +++ b/tests/un_ops.at @@ -1,7 +1,7 @@ # Checking the unary operations. -*- Autotest -*- -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # diff --git a/tests/variables.at b/tests/variables.at index 1b6a04b..ff9cd9c 100644 --- a/tests/variables.at +++ b/tests/variables.at @@ -1,7 +1,7 @@ # Checking the variables. -*- Autotest -*- -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free -# Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 +# Free Software Foundation, Inc. # # This file is part of GNU libmatheval # |