diff --git a/src/runtime/communication.rs b/src/runtime/communication.rs index d7cd77cba7c3d4b5180bcc38bf376c961add6e3f..437a9aec36d61e1676ca79bb93477511582aabf3 100644 --- a/src/runtime/communication.rs +++ b/src/runtime/communication.rs @@ -9,7 +9,7 @@ struct BranchingNative { struct NativeBranch { index: usize, gotten: HashMap, - to_get: HashSet, + to_get: HashSet, // native branch is ended iff to_get.is_empty() } #[derive(Debug)] struct SolutionStorage { @@ -26,9 +26,9 @@ struct BranchingProtoComponent { } #[derive(Debug, Clone)] struct ProtoComponentBranch { - ended: bool, inbox: HashMap, state: ComponentState, + ended: bool, } struct CyclicDrainer<'a, K: Eq + Hash, V> { input: &'a mut HashMap,