similar subtree
| 443 | |
| 444 | /// similar subtree |
| 445 | static void ss_analysis(Conductor &c) |
| 446 | { |
| 447 | |
| 448 | const char *path = "/home/maxim/dev/cp-profiler2/golomb6.db"; |
| 449 | // const char *path = "/home/maxim/dev/cp-profiler2/golomb10.db"; |
| 450 | auto ex = db_handler::load_execution(path); |
| 451 | if (!ex) |
| 452 | { |
| 453 | print("could not load the execution"); |
| 454 | } |
| 455 | else |
| 456 | { |
| 457 | c.addNewExecution(ex); |
| 458 | c.showTraditionalView(ex.get()); |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | static void nogood_dialog(Conductor &c) |
| 463 | { |
nothing calls this directly
no test coverage detected