| 827 | } |
| 828 | |
| 829 | void Model::clear_debug_nodes() { |
| 830 | auto* graph = static_cast<CactusGraph*>(graph_handle_); |
| 831 | if (!graph) { |
| 832 | return; |
| 833 | } |
| 834 | graph->clear_debug_nodes(); |
| 835 | } |
| 836 | |
| 837 | const std::vector<Model::DebugNode>& Model::get_debug_nodes() const { |
| 838 | auto* graph = static_cast<CactusGraph*>(graph_handle_); |
nothing calls this directly
no outgoing calls
no test coverage detected