Data flow: Allow nodes to be hidden from path explanations

This commit is contained in:
Tom Hvitved
2020-06-09 13:53:19 +02:00
parent 398678a28b
commit 8c9f85d04f
7 changed files with 98 additions and 179 deletions

View File

@@ -314,3 +314,6 @@ predicate isImmutableOrUnobservable(Node n) {
// The above list of cases isn't exhaustive, but it narrows down the
// consistency alerts enough that most of them are interesting.
}
/** Holds if `n` should be hidden from path explanations. */
predicate nodeIsHidden(Node n) { none() }

View File

@@ -306,3 +306,6 @@ predicate isImmutableOrUnobservable(Node n) {
// complex to model here.
any()
}
/** Holds if `n` should be hidden from path explanations. */
predicate nodeIsHidden(Node n) { none() }