Skip to content

Commit

Permalink
update generic parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmcsherry committed Jul 9, 2019
1 parent 1555677 commit e30e822
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions experiments/src/bin/graphs-static.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ fn main() {

use differential_dataflow::operators::arrange::TraceAgent;

type TraceHandle = TraceAgent<Node, Node, (), Diff, GraphTrace>;
type TraceHandle = TraceAgent<GraphTrace>;

fn reach<G: Scope<Timestamp = ()>> (
graph: &mut TraceHandle,
Expand Down Expand Up @@ -253,7 +253,7 @@ fn _connected_components_odd<G: Scope<Timestamp = ()>>(

let labels =
proposals
.reduce_abelian::<_,_,Spine<Node, Node, _, Diff, Rc<OrdValBatch<Node, Node, _, Diff>>>,_>(|_, s, t| { t.push((*s[0].0, 1)); });
.reduce_abelian::<_,Spine<Node, Node, _, Diff, Rc<OrdValBatch<Node, Node, _, Diff>>>>(|_, s, t| { t.push((*s[0].0, 1)); });

let f_prop = labels.join_core(&forward, |_k,l,d| Some((*d,*l)));
let r_prop = labels.join_core(&reverse, |_k,l,d| Some((*d,*l)));
Expand Down

0 comments on commit e30e822

Please sign in to comment.