(&self)
| 3494 | } |
| 3495 | |
| 3496 | pub(super) fn check_finalized(&self) -> Result<()> { |
| 3497 | if !self.is_finalized() { |
| 3498 | return Err(runtime_error!("Graph is not finalized")); |
| 3499 | } |
| 3500 | Ok(()) |
| 3501 | } |
| 3502 | |
| 3503 | fn make_serializable(&self) -> SerializableGraph { |
| 3504 | let output_node = match self.get_output_node() { |
no test coverage detected