diff --git a/reactor/Core/src/jetbrains/mps/logic/reactor/core/PartialMatchTrie.kt b/reactor/Core/src/jetbrains/mps/logic/reactor/core/PartialMatchTrie.kt index 8c73c8cc..f54a1fac 100644 --- a/reactor/Core/src/jetbrains/mps/logic/reactor/core/PartialMatchTrie.kt +++ b/reactor/Core/src/jetbrains/mps/logic/reactor/core/PartialMatchTrie.kt @@ -94,7 +94,7 @@ internal class MatchTrieSet(val rule: Rule, val profiler: Profiler?) { this.tries.addAll(copyTries) this.tries.addAll(relevantTries) - return tries.asSequence().flatMap { t -> t.matches() } + return relevantTries.asSequence().flatMap { t -> t.matches() } } inner class PartialMatchTrie(val activeOcc: ConstraintOccurrence,