]> www.ginac.de Git - ginac.git/blobdiff - ginac/printtree.cpp
- rotate_31() and golden_hash_ratio() moved to utils.h
[ginac.git] / ginac / printtree.cpp
index d30f50582a65b559c0ad8fb803a84f645773760a..a7b09723aedbb8df704accc513ebd8a0648f7919 100644 (file)
@@ -1,8 +1,9 @@
 /** @file printtree.cpp
  *
  * print in tree- (indented-) form, so developers can have a look at the
 /** @file printtree.cpp
  *
  * print in tree- (indented-) form, so developers can have a look at the
- * underlying structure.
- *
+ * underlying structure. */
+
+/*
  *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
 #include <iostream>
 #include <math.h>
 
 #include <iostream>
 #include <math.h>
 
-#include "ginac.h"
+#include "basic.h"
+#include "ex.h"
+#include "add.h"
+#include "constant.h"
+#include "expairseq.h"
+#include "indexed.h"
+#include "inifcns.h"
+#include "mul.h"
+#include "ncmul.h"
+#include "numeric.h"
+#include "power.h"
+#include "relational.h"
+#include "series.h"
+#include "symbol.h"
+#include "debugmsg.h"
+
+namespace GiNaC {
 
 void ex::printtree(ostream & os, unsigned indent) const
 {
 
 void ex::printtree(ostream & os, unsigned indent) const
 {
@@ -164,3 +181,4 @@ void expairseq::printtree(ostream & os, unsigned indent) const
 #endif // def EXPAIRSEQ_USE_HASHTAB
 }
 
 #endif // def EXPAIRSEQ_USE_HASHTAB
 }
 
+} // namespace GiNaC