]> www.ginac.de Git - ginac.git/blobdiff - check/numeric_archive.cpp
Finalize 1.7.6 release.
[ginac.git] / check / numeric_archive.cpp
index 8f69a7b7567557cec81869e094c02f4f15c58bfa..a7d410c4bff037f67bdaf7cb4c0a9e2cf480e44f 100644 (file)
@@ -1,19 +1,39 @@
-/**
- * @file numeric_archive.cpp Check for a bug in numeric::archive
+/** @file numeric_archive.cpp
  *
- * numeric::archive used to fail if the real part of a complex number
- * is a rational number and the imaginary part is a floating point one.
+ *  Check for a bug in numeric::archive
+ *
+ *  numeric::archive used to fail if the real part of a complex number
+ *  is a rational number and the imaginary part is a floating point one. */
+
+/*
+ *  GiNaC Copyright (C) 1999-2019 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
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
+
+#include "ginac.h"
+using namespace GiNaC;
+
+#include <algorithm>
 #include <cln/cln.h>
 #include <iostream>
-#include <stdexcept>
-#include <vector>
 #include <iterator>
-#include <algorithm>
 #include <sstream>
-#include "ginac.h"
+#include <stdexcept>
+#include <vector>
 using namespace cln;
-using namespace GiNaC;
 
 struct archive_unarchive_check
 {