Skip to content

Commit

Permalink
Name Handle's container type (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmcsherry authored Mar 21, 2024
1 parent d4e20a0 commit 84d0d4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/operators/iterate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ impl<G: Scope, D: Ord+Data+Debug, R: Semigroup> Iterate<G, D, R> for G {
pub struct Variable<G: Scope, D: Data, R: Abelian>
where G::Timestamp: Lattice {
collection: Collection<G, D, R>,
feedback: Handle<G, (D, G::Timestamp, R)>,
feedback: Handle<G, Vec<(D, G::Timestamp, R)>>,
source: Option<Collection<G, D, R>>,
step: <G::Timestamp as Timestamp>::Summary,
}
Expand Down Expand Up @@ -225,7 +225,7 @@ impl<G: Scope, D: Data, R: Abelian> Deref for Variable<G, D, R> where G::Timesta
pub struct SemigroupVariable<G: Scope, D: Data, R: Semigroup>
where G::Timestamp: Lattice {
collection: Collection<G, D, R>,
feedback: Handle<G, (D, G::Timestamp, R)>,
feedback: Handle<G, Vec<(D, G::Timestamp, R)>>,
step: <G::Timestamp as Timestamp>::Summary,
}

Expand Down

0 comments on commit 84d0d4d

Please sign in to comment.