]> www.ginac.de Git - ginac.git/commitdiff
commented out internal debugging function
authorChristian Bauer <Christian.Bauer@uni-mainz.de>
Tue, 22 Feb 2005 19:15:09 +0000 (19:15 +0000)
committerChristian Bauer <Christian.Bauer@uni-mainz.de>
Tue, 22 Feb 2005 19:15:09 +0000 (19:15 +0000)
ginac/hash_map.h

index 82b18a1b1495dba7afaa974e953735940b4bcc55..958d10988103679bc200e36803c18d846efd5ed9 100644 (file)
@@ -431,6 +431,7 @@ public:
                return !(lhs == rhs);
        }
 
+#if 0
        void dump() const
        {
                std::clog << "num_entries = " << num_entries << std::endl;
@@ -441,6 +442,7 @@ public:
                        std::clog << (it->first == EMPTY ? "free" : (it->first == USED ? "used" : "erased")) << ", " << it->second.first << " -> " << it->second.second << std::endl;
                }
        }
+#endif
 };
 
 /** Return pointer to bucket corresponding to key (or first empty bucket). */