Streamline time computation

No functional change.
This commit is contained in:
Marco Costalba
2013-08-03 18:30:43 +02:00
parent b1a4a18d63
commit f31847302d
3 changed files with 11 additions and 14 deletions

View File

@@ -59,13 +59,6 @@ const string engine_info(bool to_uci) {
}
/// Convert system time to milliseconds. That's all we need.
Time::point Time::now() {
sys_time_t t; system_time(&t); return time_to_msec(t);
}
/// Debug functions used mainly to collect run-time statistics
static uint64_t hits[2], means[2];