diff options
| author | Andrew Guschin <guschin@altlinux.org> | 2024-11-05 21:28:48 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin@altlinux.org> | 2024-11-05 21:28:48 +0400 |
| commit | 8117591bdbc5e168d91eac09316bc7e21068429b (patch) | |
| tree | 5b9dd8655b87e84e03df93a439ef82649a92dc4a /graph-checker/src/compute.rs | |
| parent | 67b2ce202097c4ce0db3ea81df775405608d527f (diff) | |
wipui
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; |