Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
Change-Id: Ifda9f53eb8c532dd10b1fc6cca936ca743d69565
  • Loading branch information
Cypher1 committed Mar 3, 2022
1 parent 86325db commit ae0b7e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion ibis/src/recipe_to_dot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
4 changes: 2 additions & 2 deletions ibis/src/solution_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -23,4 +23,4 @@ impl SolutionData {
n.edges.insert((from, to));
n
}
}
}

0 comments on commit ae0b7e9

Please sign in to comment.