]> www.ginac.de Git - ginac.git/blobdiff - ginac/normal.h
- More drastic performance boost on matrix stuff.
[ginac.git] / ginac / normal.h
index d4d8ac166664aaf16ae9e54ba2657668ddd70045..f3e8920dbea4a1e1454d5fb7a592af42f150826f 100644 (file)
@@ -1,9 +1,10 @@
 /** @file normal.h
  *
  *  Functions for polynomial quotient and remainder, GCD and LCM computation
- *  and square-free factorization.
- *
- *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
+ *  and square-free factorization. */
+
+/*
+ *  GiNaC Copyright (C) 1999-2000 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#ifndef NORMAL_H
-#define NORMAL_H
+#ifndef __GINAC_NORMAL_H__
+#define __GINAC_NORMAL_H__
+
+#ifndef NO_NAMESPACE_GINAC
+namespace GiNaC {
+#endif // ndef NO_NAMESPACE_GINAC
 
 class ex;
 class symbol;
@@ -47,4 +52,8 @@ extern ex lcm(const ex &a, const ex &b, bool check_args = true);
 // Square-free factorization of a polynomial a(x)
 extern ex sqrfree(const ex &a, const symbol &x);
 
-#endif
+#ifndef NO_NAMESPACE_GINAC
+} // namespace GiNaC
+#endif // ndef NO_NAMESPACE_GINAC
+
+#endif // ndef __GINAC_NORMAL_H__