| 304 | } |
| 305 | |
| 306 | void comparison2(Conductor &c) |
| 307 | { |
| 308 | |
| 309 | const auto path = "/home/maxim/dev/cp-profiler2/golomb8.db"; |
| 310 | |
| 311 | auto ex1 = db_handler::load_execution(path); |
| 312 | if (ex1) |
| 313 | c.addNewExecution(ex1); |
| 314 | |
| 315 | auto ex2 = db_handler::load_execution(path); |
| 316 | if (ex2) |
| 317 | c.addNewExecution(ex2); |
| 318 | |
| 319 | c.mergeTrees(ex1.get(), ex2.get()); |
| 320 | } |
| 321 | |
| 322 | void tree_building(Conductor &c) |
| 323 | { |
nothing calls this directly
no test coverage detected