summaryrefslogtreecommitdiff
path: root/src/theory/inference_id.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-03-21 08:12:11 -0500
committerGitHub <noreply@github.com>2021-03-21 13:12:11 +0000
commit09097cd3b9cd3233b938ace34f3513a16ac17f80 (patch)
treeb889e15b487582e810db61b64dade7e6a14d225b /src/theory/inference_id.h
parent02dd48563db0c5effd608eda70d4c262309322a6 (diff)
Clean up remaining raw uses of output channel (#6161)
After this PR, with only a few exceptions, all calls to output channel for lemmas, conflicts are made through inference manager. This is work towards standardizing the statistics for theories.
Diffstat (limited to 'src/theory/inference_id.h')
-rw-r--r--src/theory/inference_id.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/theory/inference_id.h b/src/theory/inference_id.h
index 4af7761a0..380b5eca6 100644
--- a/src/theory/inference_id.h
+++ b/src/theory/inference_id.h
@@ -294,6 +294,29 @@ enum class InferenceId
SEP_PTO_NEG_PROP,
// enforces injectiveness of pto: (pto x y) ^ (pto y w) ^ x = y => y = w
SEP_PTO_PROP,
+ // introduces a label for a heap, of the form U => L, where U is an
+ // unlabelled separation logic predicate and L is its labelled form
+ SEP_LABEL_INTRO,
+ // introduces the set constraints for a label
+ SEP_LABEL_DEF,
+ // lemma for sep.emp
+ SEP_EMP,
+ // positive reduction for sep constraint
+ SEP_POS_REDUCTION,
+ // negative reduction for sep constraint
+ SEP_NEG_REDUCTION,
+ // model-based refinement for negated star/wand
+ SEP_REFINEMENT,
+ // sep.nil is not in the heap
+ SEP_NIL_NOT_IN_HEAP,
+ // a symmetry breaking lemma
+ SEP_SYM_BREAK,
+ // finite witness data lemma
+ SEP_WITNESS_FINITE_DATA,
+ // element distinctness lemma
+ SEP_DISTINCT_REF,
+ // reference bound lemma
+ SEP_REF_BOUND,
// ---------------------------------- end sep theory
// ---------------------------------- sets theory
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback