Skip to content

Commit

Permalink
fix(hydroflow_lang): fix coloring of _lattice_join_fused_join, fix #…
Browse files Browse the repository at this point in the history
  • Loading branch information
MingweiSamuel committed Feb 1, 2024
1 parent 56fbc34 commit 3d43991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hydroflow_lang/src/graph/ops/_lattice_join_fused_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pub const _LATTICE_JOIN_FUSED_JOIN: OperatorConstraints = OperatorConstraints {
is_external_input: false,
ports_inn: Some(|| super::PortListSpec::Fixed(parse_quote! { 0, 1 })),
ports_out: None,
input_delaytype_fn: |_| Some(DelayType::Stratum),
input_delaytype_fn: |_| Some(DelayType::MonotoneAccum),
input_edgetype_fn: |_| Some(GraphEdgeType::Value),
output_edgetype_fn: |_| GraphEdgeType::Value,
flow_prop_fn: None,
Expand Down

0 comments on commit 3d43991

Please sign in to comment.