Initial release #1

Merged
warrence merged 102 commits from dev into main 2026-06-30 10:26:52 +02:00
Showing only changes of commit d3fcd690a5 - Show all commits
-6
View File
@@ -4,12 +4,6 @@ use crate::traits::GraphTopology;
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
pub struct Vertex(usize);
impl From<Vertex> for usize {
fn from(v: Vertex) -> usize {
v.0
}
}
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
pub struct Incidence(usize);