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

Commit

Permalink
TMP - modified
Browse files Browse the repository at this point in the history
  • Loading branch information
Cypher1 committed Mar 4, 2022
1 parent 7244d0c commit bdb7725
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ibis/src/recipes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,11 @@ ibis! {
KnownType(apply!(y_generic, y_arg));

HasTag(s, n, n, tag) <- Solution(s), Claim(n, tag);
HasTag(s, source, *down, tag) <- // Propagate tags 'downstream'
HasTag(s, source, down, tag) <- // Propagate tags 'downstream'
Node(_down_particle, down, _, _),
HasTag(s, source, curr, tag),
for (curr, down) in &s.solution().edges,
!TrustedToRemoveTag(*down, tag);
!TrustedToRemoveTag(down, tag),
(s.has_edge(curr, down));

HasTag(s, source, down, tag) <- // Propagate tags 'across stream' (i.e. inside a particle)
HasTag(s, source, curr, tag),
Expand Down

0 comments on commit bdb7725

Please sign in to comment.