| 42 | std::ofstream output_file; |
| 43 | |
| 44 | MyClass(std::string output_location) |
| 45 | { |
| 46 | output_file.open(output_location); |
| 47 | output_file<<"step"<<"\t"<<"x_best"<<"\t"<<"y_best"<<"\t"<<"cost_avg"<<"\t"<<"cost_best"<<"\n"; |
| 48 | } |
| 49 | |
| 50 | ~MyClass() |
| 51 | { |
nothing calls this directly
no outgoing calls
no test coverage detected