De-templetize Position::is_draw()

Now that we always check for repetition we don't
need a template anymore.

No functional change.
This commit is contained in:
Marco Costalba
2013-04-10 22:23:48 +02:00
parent 75221fcf5e
commit fe72c93141
3 changed files with 14 additions and 22 deletions

View File

@@ -179,7 +179,7 @@ public:
Thread* this_thread() const;
int64_t nodes_searched() const;
void set_nodes_searched(int64_t n);
template<bool SkipRepetition> bool is_draw() const;
bool is_draw() const;
// Position consistency check, for debugging
bool pos_is_ok(int* failedStep = NULL) const;