diff options
Diffstat (limited to 'graph-checker/src/compute.rs')
| -rw-r--r-- | graph-checker/src/compute.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/graph-checker/src/compute.rs b/graph-checker/src/compute.rs index b43d64c..4d3a17a 100644 --- a/graph-checker/src/compute.rs +++ b/graph-checker/src/compute.rs @@ -1,6 +1,10 @@ use crate::graph::{Graph, GraphProfile}; use crate::theorems::{basic, forbidden, toughness}; +use std::sync::mpsc; + +pub fn producer(send: mpsc::Sender<GraphProfile>) {} + pub fn apply_theorems(g: Graph) -> GraphProfile { // let db = db.clone(); // counters.graphs += 1; |