]> www.ginac.de Git - ginac.git/blobdiff - check/check_numeric.cpp
match() (find()): use exmap (exset) to store matched subexpressions.
[ginac.git] / check / check_numeric.cpp
index ae15454566d77c9c855b92b87e01f273501b0275..ec878be2ec9b2ea9d0792f5e9aa579d2823694f2 100644 (file)
@@ -4,7 +4,7 @@
  *  tests on these numbers like is_integer() etc... */
 
 /*
- *  GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include "checks.h"
+#include <iostream>
+#include <cstdlib> // rand()
+#include "ginac.h"
+using namespace std;
+using namespace GiNaC;
 
 /* Simple and maybe somewhat pointless consistency tests of assorted tests and
  * conversions. */
-static unsigned check_numeric1(void)
+static unsigned check_numeric1()
 {
        unsigned result = 0;
        bool errorflag = false;
@@ -53,7 +57,7 @@ static unsigned check_numeric1(void)
        return result;
 }
 
-static unsigned check_numeric2(void)
+static unsigned check_numeric2()
 {
        unsigned result = 0;
        bool errorflag = false;
@@ -66,22 +70,32 @@ static unsigned check_numeric2(void)
                        numeric nm(1,j);
                        nm += numeric(int(20.0*rand()/(RAND_MAX+1.0))-10);
                        // ...a numerator...
-                       do { i_num = rand(); } while (i_num == 0);
+                       do {
+                               i_num = rand();
+                       } while (i_num<=0);
                        numeric num(i_num);
                        // ...and a denominator.
-                       do { i_den = (rand())/100; } while (i_den == 0);
+                       do {
+                               i_den = (rand())/100;
+                       } while (i_den<=0);
                        numeric den(i_den);
                        // construct the radicals:
                        ex radical = pow(ex(num)/ex(den),ex(nm));
                        numeric floating = pow(num/den,nm);
                        // test the result:
                        if (is_a<numeric>(radical)) {
-                               clog << "(" << num << "/" << den << ")^(" << nm
-                                    << ") should have been a product, instead it's "
-                                    << radical << endl;
-                               errorflag = true;
+                               // This is very improbable with decent random numbers but it
+                               // still can happen, so we better check if it is correct:
+                               if (pow(radical,inverse(nm))==num/den) {
+                                       // Aha! We drew some lucky numbers. Nothing to see here...
+                               } else {
+                                       clog << "(" << num << "/" << den << ")^(" << nm
+                                                << ") should have been a product, instead it's "
+                                                << radical << endl;
+                                       errorflag = true;
+                               }
                        }
-                       numeric ratio = ex_to<numeric>(abs(evalf(radical)))/floating;
+                       numeric ratio = abs(ex_to<numeric>(evalf(radical))/floating);
                        if (ratio>1.0001 && ratio<0.9999) {
                                clog << "(" << num << "/" << den << ")^(" << nm
                                     << ") erroneously evaluated to " << radical;
@@ -95,7 +109,7 @@ static unsigned check_numeric2(void)
        return result;
 }
 
-unsigned check_numeric(void)
+unsigned check_numeric()
 {
        unsigned result = 0;
        
@@ -105,12 +119,10 @@ unsigned check_numeric(void)
        result += check_numeric1();  cout << '.' << flush;
        result += check_numeric2();  cout << '.' << flush;
        
-       if (!result) {
-               cout << " passed " << endl;
-               clog << "(no output)" << endl;
-       } else {
-               cout << " failed " << endl;
-       }
-       
        return result;
 }
+
+int main(int argc, char** argv)
+{
+       return check_numeric();
+}