diff options
Diffstat (limited to 'graph-checker/src/compute.rs')
| -rw-r--r-- | graph-checker/src/compute.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graph-checker/src/compute.rs b/graph-checker/src/compute.rs index c3ee046..67c1ae4 100644 --- a/graph-checker/src/compute.rs +++ b/graph-checker/src/compute.rs @@ -2,7 +2,7 @@ use crate::graph::Graph; pub async fn dominating_numbers( g: Graph, -) -> (String, Option<u32>, Option<u32>) { +) -> (String, usize, Option<u32>, Option<u32>) { let line = g.to_g6(); let mut independent_dominating = None; @@ -85,5 +85,5 @@ pub async fn dominating_numbers( } } - (line, independent_dominating, fg) + (line, g.size, independent_dominating, fg) } |