]> www.ginac.de Git - ginac.git/blobdiff - check/check_numeric.cpp
Fix some apparent typos and misindentations.
[ginac.git] / check / check_numeric.cpp
index ce79a27498cad185f85b7c1b02d4ccc91d31ccd4..6c14623f71bd018652b53c7d9622993b74820026 100644 (file)
@@ -1,10 +1,10 @@
 /** @file check_numeric.cpp
  *
- *  These exams creates some numbers and check the result of several boolean
+ *  These exams creates some numbers and check the result of several Boolean
  *  tests on these numbers like is_integer() etc... */
 
 /*
- *  GiNaC Copyright (C) 1999-2007 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2015 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
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include <iostream>
-#include <cstdlib> // rand()
 #include "ginac.h"
-using namespace std;
 using namespace GiNaC;
 
+#include <cstdlib> // for rand()
+#include <iostream>
+using namespace std;
+
 /* Simple and maybe somewhat pointless consistency tests of assorted tests and
  * conversions. */
 static unsigned check_numeric1()
@@ -114,7 +115,6 @@ unsigned check_numeric()
        unsigned result = 0;
        
        cout << "checking consistency of numeric types" << flush;
-       clog << "---------consistency of numeric types:" << endl;
        
        result += check_numeric1();  cout << '.' << flush;
        result += check_numeric2();  cout << '.' << flush;