summaryrefslogtreecommitdiff
path: root/graph-checker/src/compute.rs
diff options
context:
space:
mode:
Diffstat (limited to 'graph-checker/src/compute.rs')
-rw-r--r--graph-checker/src/compute.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/graph-checker/src/compute.rs b/graph-checker/src/compute.rs
index 2d0ddcc..34d57a9 100644
--- a/graph-checker/src/compute.rs
+++ b/graph-checker/src/compute.rs
@@ -1,6 +1,8 @@
use crate::graph::Graph;
-pub fn dominating_numbers(g: Graph) -> (String, Option<u32>, Option<u32>) {
+pub async fn dominating_numbers(
+ g: Graph,
+) -> (String, Option<u32>, Option<u32>) {
let line = g.to_g6();
let mut independent_dominating = None;