Revert "Cache line aligned TT"

This reverts commit 083fe58124

It seems to break Android build

No functional change.
This commit is contained in:
Marco Costalba
2013-04-30 08:08:54 +02:00
parent 06b9140e5c
commit 293c44bc09
4 changed files with 11 additions and 11 deletions

View File

@@ -85,7 +85,7 @@ class TranspositionTable {
static const unsigned ClusterSize = 4; // A cluster is 64 Bytes
public:
~TranspositionTable() { free(mem); }
~TranspositionTable() { delete [] table; }
void new_search() { generation++; }
TTEntry* probe(const Key key) const;
@@ -98,7 +98,6 @@ public:
private:
uint32_t hashMask;
TTEntry* table;
void* mem;
uint8_t generation; // Size must be not bigger then TTEntry::generation8
};