Faster scaled evaluation, etc.

This commit is contained in:
maartenkeijzer 2005-10-07 13:31:20 +00:00
commit 3ca7c0f6f4
9 changed files with 76 additions and 27 deletions

View file

@ -20,7 +20,7 @@
#include <cassert>
#if __GNUC__ == 3
#if __GNUC__ >= 3
#include <backward/hash_map.h>
#else
#include <hash_map.h>

View file

@ -84,7 +84,7 @@ struct SymValue
unsigned getSize() const { return size; }
unsigned getDepth() const { return depth; }
private :
// for reference counting
unsigned refcount;
@ -92,8 +92,8 @@ struct SymValue
// some simple stats
unsigned size;
unsigned depth;
UniqueNodeStats* uniqueNodeStats;
};