From 679b597f928983531b3b93f0d266545ab0437ba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20M=C3=BCller?= Date: Wed, 8 Oct 2025 14:38:28 +0200 Subject: [PATCH] Add todo --- src/models.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models.rs b/src/models.rs index 4847121..ba56b93 100644 --- a/src/models.rs +++ b/src/models.rs @@ -1,3 +1,4 @@ +// TODO: Vertex (and Incidence?) should be references of Graph data, not plain indices into the internal (Vec) data structures. // TODO: Vertex value must not be public. #[derive(Copy, Clone, PartialEq, Eq, Debug)] pub struct Vertex(pub usize);