diff options
author | KUDr <kudr@openttd.org> | 2006-06-04 09:13:59 +0000 |
---|---|---|
committer | KUDr <kudr@openttd.org> | 2006-06-04 09:13:59 +0000 |
commit | 9cf3badfcf4e99f20b8a751457ee76d22fc9f110 (patch) | |
tree | b0c6a4a39d1a96cd15bd05608718b8891b8a1433 /yapf | |
parent | 877c7e34a52874eab1eb7e2a0ed15a007390d1df (diff) | |
download | openttd-9cf3badfcf4e99f20b8a751457ee76d22fc9f110.tar.xz |
(svn r5093) -CodeChange: [YAPF] min. debug level changed from 1 to 3 and 4 for frequent debug messages (performance stats)
Diffstat (limited to 'yapf')
-rw-r--r-- | yapf/yapf_base.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yapf/yapf_base.hpp b/yapf/yapf_base.hpp index 55d2d81ec..e08422ed3 100644 --- a/yapf/yapf_base.hpp +++ b/yapf/yapf_base.hpp @@ -154,7 +154,7 @@ public: #ifdef UNITTEST printf("%c%c%4d-%6d us -%5d rounds -%4d open -%5d closed - CHR %4.1f%% - c/d(%d, %d) - c%d(sc%d, ts%d, o%d) -- \n", bDestFound ? '-' : '!', ttc, veh_idx, t, m_num_steps, m_nodes.OpenCount(), m_nodes.ClosedCount(), cache_hit_ratio, cost, dist, m_perf_cost.Get(1000000), m_perf_slope_cost.Get(1000000), m_perf_ts_cost.Get(1000000), m_perf_other_cost.Get(1000000)); #else - DEBUG(yapf, 1)("[YAPF][YAPF%c]%c%4d- %d us - %d rounds - %d open - %d closed - CHR %4.1f%% - c%d(sc%d, ts%d, o%d) -- ", ttc, bDestFound ? '-' : '!', veh_idx, t, m_num_steps, m_nodes.OpenCount(), m_nodes.ClosedCount(), cache_hit_ratio, cost, dist, m_perf_cost.Get(1000000), m_perf_slope_cost.Get(1000000), m_perf_ts_cost.Get(1000000), m_perf_other_cost.Get(1000000)); + DEBUG(yapf, 3)("[YAPF][YAPF%c]%c%4d- %d us - %d rounds - %d open - %d closed - CHR %4.1f%% - c%d(sc%d, ts%d, o%d) -- ", ttc, bDestFound ? '-' : '!', veh_idx, t, m_num_steps, m_nodes.OpenCount(), m_nodes.ClosedCount(), cache_hit_ratio, cost, dist, m_perf_cost.Get(1000000), m_perf_slope_cost.Get(1000000), m_perf_ts_cost.Get(1000000), m_perf_other_cost.Get(1000000)); #endif return bDestFound; } |