Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
yuandong-tian committed Jun 3, 2018
1 parent 0a2f398 commit 4257b39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src_cpp/elf/ai/tree_search/tree_search.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ class TreeSearchSingleThreadT {
TreeSearchSingleThreadT(int thread_id, const TSOptions& options)
: threadId_(thread_id), options_(options) {
if (options_.verbose) {
std::string log_file = "tree_search_" +
std::to_string(thread_id) + ".txt";
std::string log_file =
"tree_search_" + std::to_string(thread_id) + ".txt";
output_.reset(new std::ofstream(log_file));
}
}
Expand Down

0 comments on commit 4257b39

Please sign in to comment.