commit 68ab63038f2a64ae671e7915e91bb8355e5167e4 parent fe227dce3c67d50f1e16f9707c90953886c3e333 Author: Andrew Laack <andrew@laack.co> Date: Tue, 15 Sep 2026 23:49:45 -0500 Added comment about edge count Diffstat:
| M | background/src/main.cpp | | | 4 | ++++ |
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/background/src/main.cpp b/background/src/main.cpp @@ -30,6 +30,10 @@ int main(int argc, char** argv) { .scan<'g', float>(); + // edges != total number of unique edges where uniqueness is defined by vertices + // this is because we allow multiple edges between two vertices (though they aren't rendered differently) + // we don't allow self-edges though. + program.add_argument("--edges", "-e") .help("number of edges in the graph") .default_value(DEFAULT_EDGE_COUNT)