Add Default implementation for AppendGraph

This commit is contained in:
2026-04-23 18:10:43 +02:00
parent b54800c1be
commit eabde7d635
+6
View File
@@ -61,6 +61,12 @@ impl AppendGraph {
}
}
impl Default for AppendGraph {
fn default() -> Self {
Self::new()
}
}
impl GraphTopology for AppendGraph {
type Vertex = Vertex;