diff --git a/ibis/src/recipe_to_dot.rs b/ibis/src/recipe_to_dot.rs index 774b52e0e..1cd68d081 100644 --- a/ibis/src/recipe_to_dot.rs +++ b/ibis/src/recipe_to_dot.rs @@ -5,7 +5,9 @@ // https://developers.google.com/open-source/licenses/bsd use crate::dot::{DotGraph, ToDot}; -use crate::recipes::{Check, Claim, HasTag, Ibis, Leak, Node, TrustedToRemoveTag, Recipe, TypeError}; +use crate::recipes::{ + Check, Claim, HasTag, Ibis, Leak, Node, Recipe, TrustedToRemoveTag, TypeError, +}; use crate::Sol; use std::collections::HashMap; diff --git a/ibis/src/solution_data.rs b/ibis/src/solution_data.rs index f01294499..2da3c6110 100644 --- a/ibis/src/solution_data.rs +++ b/ibis/src/solution_data.rs @@ -10,7 +10,7 @@ use std::collections::BTreeSet; #[derive(Clone, PartialEq, Eq, Ord, PartialOrd, Hash, Default)] pub struct SolutionData { pub edges: BTreeSet<(Ent, Ent)>, // from, to - // TODO: Instances of: pub particle_instance: BTreeSet<(Ent, Ent)>, // from, to + // TODO: Instances of: pub particle_instance: BTreeSet<(Ent, Ent)>, // from, to } impl SolutionData { @@ -23,4 +23,4 @@ impl SolutionData { n.edges.insert((from, to)); n } -} \ No newline at end of file +}