Dataflow: Simplify diff-informed implementation and tweak flag name.

This commit is contained in:
Anders Schack-Mulligen
2024-09-19 13:30:17 +02:00
committed by Chuan-kai Lin
parent ff78bebf19
commit 3a1e50dcf9
32 changed files with 142 additions and 365 deletions

View File

@@ -284,13 +284,7 @@ deprecated private module Config implements FullStateConfigSig {
predicate includeHiddenNodes() { any(Configuration config).includeHiddenNodes() }
predicate filterForSourceOrSinkAlerts() { none() }
predicate isFilteredSource(Node source, FlowState state) { isSource(source, state) }
predicate isFilteredSink(Node sink, FlowState state) { isSink(sink, state) }
predicate isFilteredSink(Node sink) { isSink(sink) }
predicate observeDiffInformedIncrementalMode() { none() }
}
deprecated private import Impl<Config> as I