| 17 | } |
| 18 | |
| 19 | void ProcessorBase::open_input_file(int my_num, int thread_num, |
| 20 | const string& prefix) |
| 21 | { |
| 22 | string tmp = prefix; |
| 23 | if (prefix.empty()) |
| 24 | tmp = "Player-Data/Input"; |
| 25 | |
| 26 | open_input_file(get_parameterized_filename(my_num, thread_num, tmp)); |
| 27 | } |
| 28 | |
| 29 | void ProcessorBase::setup_redirection(int my_num, int thread_num, |
| 30 | OnlineOptions& opts, SwitchableOutput& out, bool real) |
no test coverage detected