Documentation

cvc5.ProofRule

inductive cvc5.ProofRule :

\internal This documentation is target for the online documentation that can be found at https://cvc5.github.io/docs/latest/proofs/proof_rules.html \endinternal

\verbatim embed:rst:leading-asterisk An enumeration for proof rules. This enumeration is analogous to Kind for Node objects.

All proof rules are given as inference rules, presented in the following form:

.. math::

\texttt{RULENAME}: \inferruleSC{\varphi_1 \dots \varphi_n \mid t_1 \dots t_m}{\psi}{if $C$}

where we call :math:\varphi_i its premises or children, :math:t_i its arguments, :math:\psi its conclusion, and :math:C its side condition. Alternatively, we can write the application of a proof rule as (RULENAME F1 ... Fn :args t1 ... tm), omitting the conclusion (since it can be uniquely determined from premises and arguments). Note that premises are sometimes given as proofs, i.e., application of proof rules, instead of formulas. This abuses the notation to see proof rule applications and their conclusions interchangeably.

Conceptually, the following proof rules form a calculus whose target user is the Node-level theory solvers. This means that the rules below are designed to reason about, among other things, common operations on Node objects like Rewriter::rewrite or Node::substitute. It is intended to be translated or printed in other formats.

The following ProofRule values include core rules and those categorized by theory, including the theory of equality.

The "core rules" include two distinguished rules which have special status: (1) :cpp:enumerator:ASSUME <cvc5::ProofRule::ASSUME>, which represents an open leaf in a proof; and (2) :cpp:enumerator:SCOPE <cvc5::ProofRule::SCOPE>, which encloses a scope (a subproof) with a set of scoped assumptions. The core rules additionally correspond to generic operations that are done internally on nodes, e.g., calling Rewriter::rewrite().

Rules with prefix MACRO_ are those that can be defined in terms of other rules. These exist for convenience and can be replaced by their definition in post-processing. \endverbatim

  • ASSUME : ProofRule

    \verbatim embed:rst:leading-asterisk Assumption (a leaf)

    .. math::

    \inferrule{- \mid F}{F}

    This rule has special status, in that an application of assume is an open leaf in a proof that is not (yet) justified. An assume leaf is analogous to a free variable in a term, where we say "F is a free assumption in proof P" if it contains an application of F that is not bound by :cpp:enumerator:SCOPE <cvc5::ProofRule::SCOPE> (see below). \endverbatim

  • SCOPE : ProofRule

    \verbatim embed:rst:leading-asterisk Scope (a binder for assumptions)

    .. math::

    \inferruleSC{F \mid F_1 \dots F_n}{(F_1 \land \dots \land F_n) \Rightarrow F}{if $F\neq\bot$} \textrm{ or } \inferruleSC{F \mid F_1 \dots F_n}{\neg (F_1 \land \dots \land F_n)}{if $F=\bot$}

    This rule has a dual purpose with :cpp:enumerator:ASSUME <cvc5::ProofRule::ASSUME>. It is a way to close assumptions in a proof. We require that :math:F_1 \dots F_n are free assumptions in P and say that :math:F_1 \dots F_n are not free in (SCOPE P). In other words, they are bound by this application. For example, the proof node: (SCOPE (ASSUME F) :args F) has the conclusion :math:F \Rightarrow F and has no free assumptions. More generally, a proof with no free assumptions always concludes a valid formula. \endverbatim

  • SUBS : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- Substitution

    .. math::

    \inferrule{F_1 \dots F_n \mid t, ids?}{t = t \circ \sigma_{ids}(F_n) \circ \cdots \circ \sigma_{ids}(F_1)}

    where :math:\sigma_{ids}(F_i) are substitutions, which notice are applied in reverse order. Notice that :math:ids is a MethodId identifier, which determines how to convert the formulas :math:F_1 \dots F_n into substitutions. It is an optional argument, where by default the premises are equalities of the form (= x y) and converted into substitutions :math:x\mapsto y. \endverbatim

  • MACRO_REWRITE : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- Rewrite

    .. math:: \inferrule{- \mid t, idr}{t = \texttt{rewrite}_{idr}(t)}

    where :math:idr is a MethodId identifier, which determines the kind of rewriter to apply, e.g. Rewriter::rewrite. \endverbatim

  • EVALUATE : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- Evaluate

    .. math:: \inferrule{- \mid t}{t = \texttt{evaluate}(t)}

    where :math:\texttt{evaluate} is implemented by calling the method :math:\texttt{Evalutor::evaluate} in :cvc5src:theory/evaluator.h with an empty substitution. Note this is equivalent to: (REWRITE t MethodId::RW_EVALUATE).

    Note this proof rule only applies to atomic sorts, that is, operators on Int, Real, String, Bool or BitVector. \endverbatim

  • DISTINCT_VALUES : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- Distinct values

    .. math:: \inferrule{- \mid t, s}{\neg t = s}

    where :math:t and :math:s are distinct values.

    Note that cvc5 internally has a notion of which terms denote "values". This property is implemented for any sort that can appear in equalities. A term denotes a value if and only if it is the canonical representation of a value of that sort. For example, set values are a chain of unions of singleton sets whose elements are also values, where this chain is sorted. Any two distinct values are semantically disequal in all models.

    In practice, we use this rule only to show the distinctness of non-atomic sort, e.g. Sets, Sequences, Datatypes, Arrays, etc.

    Note that internally, the notion of value is implemented by the Node::isConst method.

    \endverbatim

  • ACI_NORM : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- associative/commutative/idempotency/identity normalization

    .. math:: \inferrule{- \mid t = s}{t = s}

    where :math:t and :math:s are equivalent modulo associativity and identity elements, and (optionally) commutativity and idempotency.

    This method normalizes currently based on two kinds of operators: (1) those that are associative, commutative, idempotent, and have an identity element (examples are or, and, bvand), (2) those that are associative, commutative and have an identity element (bvxor), (3) those that are associative and have an identity element (examples are concat, str.++, re.++).

    This is implemented internally by checking that :math:\texttt{expr::isACINorm(t, s)} = \top. For details, see :cvc5src:expr/aci_norm.h. \endverbatim

  • ABSORB : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- absorb

    .. math:: \inferrule{- \mid t = z}{t = z}

    where :math:t contains :math:z as a subterm, where :math:z is a zero element.

    In particular, :math:t is expected to be an application of a function with a zero element :math:z, and :math:z is contained as a subterm of :math:t beneath applications of that function. For example, this may show that :math:(A \wedge ( B \wedge \bot)) = \bot.

    This is implemented internally by checking that :math:\texttt{expr::isAbsorb(t, z)} = \top. For details, see :cvc5src:expr/aci_norm.h. \endverbatim

  • MACRO_SR_EQ_INTRO : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- Substitution + Rewriting equality introduction

    In this rule, we provide a term :math:t and conclude that it is equal to its rewritten form under a (proven) substitution.

    .. math:: \inferrule{F_1 \dots F_n \mid t, (ids (ida (idr)?)?)?}{t = \texttt{rewrite}{idr}(t \circ \sigma{ids, ida}(F_n) \circ \cdots \circ \sigma_{ids, ida}(F_1))}

    In other words, from the point of view of Skolem forms, this rule transforms :math:t to :math:t' by standard substitution + rewriting.

    The arguments :math:ids, :math:ida and :math:idr are optional and specify the identifier of the substitution, the substitution application and rewriter respectively to be used. For details, see :cvc5src:theory/builtin/proof_checker.h. \endverbatim

  • MACRO_SR_PRED_INTRO : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- Substitution + Rewriting predicate introduction

    In this rule, we provide a formula :math:F and conclude it, under the condition that it rewrites to true under a proven substitution.

    .. math:: \inferrule{F_1 \dots F_n \mid F, (ids (ida (idr)?)?)?}{F}

    where :math:\texttt{rewrite}_{idr}(F \circ \sigma_{ids, ida}(F_n) \circ \cdots \circ \sigma_{ids, ida}(F_1)) = \top and :math:ids and :math:idr are method identifiers.

    More generally, this rule also holds when :math:\texttt{Rewriter::rewrite}(\texttt{toOriginal}(F')) = \top where :math:F' is the result of the left hand side of the equality above. Here, notice that we apply rewriting on the original form of :math:F', meaning that this rule may conclude an :math:F whose Skolem form is justified by the definition of its (fresh) Skolem variables. For example, this rule may justify the conclusion :math:k = t where :math:k is the purification Skolem for :math:t, e.g. where the original form of :math:k is :math:t.

    Furthermore, notice that the rewriting and substitution is applied only within the side condition, meaning the rewritten form of the original form of :math:F does not escape this rule. \endverbatim

  • MACRO_SR_PRED_ELIM : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- Substitution + Rewriting predicate elimination

    .. math:: \inferrule{F, F_1 \dots F_n \mid (ids (ida (idr)?)?)?}{\texttt{rewrite}{idr}(F \circ \sigma{ids, ida}(F_n) \circ \cdots \circ \sigma_{ids, ida}(F_1))}

    where :math:ids and :math:idr are method identifiers.

    We rewrite only on the Skolem form of :math:F, similar to :cpp:enumerator:MACRO_SR_EQ_INTRO <cvc5::ProofRule::MACRO_SR_EQ_INTRO>. \endverbatim

  • MACRO_SR_PRED_TRANSFORM : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- Substitution + Rewriting predicate elimination

    .. math:: \inferrule{F, F_1 \dots F_n \mid G, (ids (ida (idr)?)?)?}{G}

    where

    .. math:: \texttt{rewrite}{idr}(F \circ \sigma{ids, ida}(F_n) \circ\cdots \circ \sigma_{ids, ida}(F_1)) =\ \texttt{rewrite}{idr}(G \circ \sigma{ids, ida}(F_n) \circ \cdots \circ \sigma_{ids, ida}(F_1))

    More generally, this rule also holds when: :math:\texttt{Rewriter::rewrite}(\texttt{toOriginal}(F')) = \texttt{Rewriter::rewrite}(\texttt{toOriginal}(G')) where :math:F' and :math:G' are the result of each side of the equation above. Here, original forms are used in a similar manner to :cpp:enumerator:MACRO_SR_PRED_INTRO <cvc5::ProofRule::MACRO_SR_PRED_INTRO> above. \endverbatim

  • ENCODE_EQ_INTRO : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- Encode equality introduction

    .. math:: \inferrule{- \mid t}{t=t'}

    where :math:t and :math:t' are equivalent up to their encoding in an external proof format.

    More specifically, it is the case that :math:\texttt{RewriteDbNodeConverter::postConvert}(t) = t;. This conversion method for instance may drop user patterns from quantified formulas or change the representation of :math:t in a way that is a no-op in external proof formats.

    Note this rule can be treated as a :cpp:enumerator:REFL <cvc5::ProofRule::REFL> when appropriate in external proof formats. \endverbatim

  • DSL_REWRITE : ProofRule

    \verbatim embed:rst:leading-asterisk Builtin theory -- DSL rewrite

    .. math:: \inferrule{F_1 \dots F_n \mid id t_1 \dots t_n}{F}

    where id is a :cpp:enum:ProofRewriteRule whose definition in the RARE DSL is :math:\forall x_1 \dots x_n. (G_1 \wedge G_n) \Rightarrow G where for :math:i=1, \dots n, we have that :math:F_i = \sigma(G_i) and :math:F = \sigma(G) where :math:\sigma is the substitution :math:\{x_1\mapsto t_1,\dots,x_n\mapsto t_n\}.

    Notice that the application of the substitution takes into account the possible list semantics of variables :math:x_1 \ldots x_n. If :math:x_i is a variable with list semantics, then :math:t_i denotes a list of terms. The substitution implemented by :math:\texttt{expr::narySubstitute} (for details, see :cvc5src:expr/nary_term_util.h) which replaces each :math:x_i with the list :math:t_i in its place. \endverbatim

  • THEORY_REWRITE : ProofRule

    \verbatim embed:rst:leading-asterisk Other theory rewrite rules

    .. math:: \inferrule{- \mid id, t = t'}{t = t'}

    where id is the :cpp:enum:ProofRewriteRule of the theory rewrite rule which transforms :math:t to :math:t'.

    In contrast to :cpp:enumerator:DSL_REWRITE, theory rewrite rules used by this proof rule are not necessarily expressible in RARE. Each rule that can be used in this proof rule are documented explicitly in cases within the :cpp:enum:ProofRewriteRule enum. \endverbatim

  • ITE_EQ : ProofRule

    \verbatim embed:rst:leading-asterisk Processing rules -- If-then-else equivalence

    .. math:: \inferrule{- \mid \ite{C}{t_1}{t_2}}{\ite{C}{((\ite{C}{t_1}{t_2}) = t_1)}{((\ite{C}{t_1}{t_2}) = t_2)}}

    \endverbatim

  • TRUST : ProofRule

    \verbatim embed:rst:leading-asterisk Trusted rule

    .. math:: \inferrule{F_1 \dots F_n \mid tid, F, ...}{F}

    where :math:tid is an identifier and :math:F is a formula. This rule is used when a formal justification of an inference step cannot be provided. The formulas :math:F_1 \dots F_n refer to a set of formulas that entail :math:F, which may or may not be provided. \endverbatim

  • TRUST_THEORY_REWRITE : ProofRule

    \verbatim embed:rst:leading-asterisk Trusted rules -- Theory rewrite

    .. math:: \inferrule{- \mid F, tid, rid}{F}

    where :math:F is an equality of the form :math:t = t' where :math:t' is obtained by applying the kind of rewriting given by the method identifier :math:rid, which is one of: RW_REWRITE_THEORY_PRE, RW_REWRITE_THEORY_POST, RW_REWRITE_EQ_EXT. Notice that the checker for this rule does not replay the rewrite to ensure correctness, since theory rewriter methods are not static. For example, the quantifiers rewriter involves constructing new bound variables that are not guaranteed to be consistent on each call. \endverbatim

  • SAT_REFUTATION : ProofRule

    \verbatim embed:rst:leading-asterisk SAT Refutation for assumption-based unsat cores

    .. math:: \inferrule{F_1 \dots F_n \mid -}{\bot}

    where :math:F_1 \dots F_n correspond to the unsat core determined by the SAT solver. \endverbatim

  • DRAT_REFUTATION : ProofRule

    \verbatim embed:rst:leading-asterisk DRAT Refutation

    .. math:: \inferrule{F_1 \dots F_n \mid D, P}{\bot}

    where :math:F_1 \dots F_n correspond to the clauses in the DIMACS file given by filename D and P is a filename of a file storing a DRAT proof. \endverbatim

  • SAT_EXTERNAL_PROVE : ProofRule

    \verbatim embed:rst:leading-asterisk SAT external prove Refutation

    .. math:: \inferrule{F_1 \dots F_n \mid D}{\bot}

    where :math:F_1 \dots F_n correspond to the input clauses in the DIMACS file D. \endverbatim

  • RESOLUTION : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Resolution

    .. math:: \inferrule{C_1, C_2 \mid pol, L}{C}

    where

    • :math:C_1 and :math:C_2 are nodes viewed as clauses, i.e., either an OR node with each children viewed as a literal or a node viewed as a literal. Note that an OR node could also be a literal.
    • :math:pol is either true or false, representing the polarity of the pivot on the first clause
    • :math:L is the pivot of the resolution, which occurs as is (resp. under a NOT) in :math:C_1 and negatively (as is) in :math:C_2 if :math:pol = \top (:math:pol = \bot).

    :math:C is a clause resulting from collecting all the literals in :math:C_1, minus the first occurrence of the pivot or its negation, and :math:C_2, minus the first occurrence of the pivot or its negation, according to the policy above. If the resulting clause has a single literal, that literal itself is the result; if it has no literals, then the result is false; otherwise it's an OR node of the resulting literals.

    Note that it may be the case that the pivot does not occur in the clauses. In this case the rule is not unsound, but it does not correspond to resolution but rather to a weakening of the clause that did not have a literal eliminated. \endverbatim

  • CHAIN_RESOLUTION : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- N-ary Resolution

    .. math:: \inferrule{C_1 \dots C_n \mid (pol_1 \dots pol_{n-1}), (L_1 \dots L_{n-1})}{C}

    where

    • let :math:C_1 \dots C_n be nodes viewed as clauses, as defined above
    • let :math:C_1 \diamond_{L,pol} C_2 represent the resolution of :math:C_1 with :math:C_2 with pivot :math:L and polarity :math:pol, as defined above
    • let :math:C_1' = C_1,
    • for each :math:i > 1, let :math:C_i' = C_{i-1} \diamond_{L_{i-1}, pol_{i-1}} C_i'

    Note the list of polarities and pivots are provided as s-expressions.

    The result of the chain resolution is :math:C = C_n' \endverbatim

  • FACTORING : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Factoring

    .. math:: \inferrule{C_1 \mid -}{C_2}

    where :math:C_2 is the clause :math:C_1, but every occurrence of a literal after its first occurrence is omitted. \endverbatim

  • REORDERING : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Reordering

    .. math:: \inferrule{C_1 \mid C_2}{C_2}

    where the multiset representations of :math:C_1 and :math:C_2 are the same. \endverbatim

  • MACRO_RESOLUTION : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- N-ary Resolution + Factoring + Reordering

    .. math:: \inferrule{C_1 \dots C_n \mid C, pol_1,L_1 \dots pol_{n-1},L_{n-1}}{C}

    where

    • let :math:C_1 \dots C_n be nodes viewed as clauses, as defined in :cpp:enumerator:RESOLUTION <cvc5::ProofRule::RESOLUTION>
    • let :math:C_1 \diamond_{L,\mathit{pol}} C_2 represent the resolution of :math:C_1 with :math:C_2 with pivot :math:L and polarity :math:pol, as defined in :cpp:enumerator:RESOLUTION <cvc5::ProofRule::RESOLUTION>
    • let :math:C_1' be equal, in its set representation, to :math:C_1,
    • for each :math:i > 1, let :math:C_i' be equal, in its set representation, to :math:C_{i-1} \diamond_{L_{i-1},\mathit{pol}_{i-1}} C_i'

    The result of the chain resolution is :math:C, which is equal, in its set representation, to :math:C_n' \endverbatim

  • MACRO_RESOLUTION_TRUST : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- N-ary Resolution + Factoring + Reordering unchecked

    Same as :cpp:enumerator:MACRO_RESOLUTION <cvc5::ProofRule::MACRO_RESOLUTION>, but not checked by the internal proof checker. \endverbatim

  • SPLIT : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Split

    .. math:: \inferrule{- \mid F}{F \lor \neg F}

    \endverbatim

  • EQ_RESOLVE : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Equality resolution

    .. math:: \inferrule{F_1, (F_1 = F_2) \mid -}{F_2}

    Note this can optionally be seen as a macro for :cpp:enumerator:EQUIV_ELIM1 <cvc5::ProofRule::EQUIV_ELIM1> + :cpp:enumerator:RESOLUTION <cvc5::ProofRule::RESOLUTION>. \endverbatim

  • MODUS_PONENS : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Modus Ponens

    .. math:: \inferrule{F_1, (F_1 \rightarrow F_2) \mid -}{F_2}

    Note this can optionally be seen as a macro for :cpp:enumerator:IMPLIES_ELIM <cvc5::ProofRule::IMPLIES_ELIM> + :cpp:enumerator:RESOLUTION <cvc5::ProofRule::RESOLUTION>. \endverbatim

  • NOT_NOT_ELIM : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Double negation elimination

    .. math:: \inferrule{\neg (\neg F) \mid -}{F}

    \endverbatim

  • CONTRA : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Contradiction

    .. math:: \inferrule{F, \neg F \mid -}{\bot}

    \endverbatim

  • AND_ELIM : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- And elimination

    .. math:: \inferrule{(F_1 \land \dots \land F_n) \mid i}{F_i}

    \endverbatim

  • AND_INTRO : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- And introduction

    .. math:: \inferrule{F_1 \dots F_n \mid -}{(F_1 \land \dots \land F_n)}

    \endverbatim

  • NOT_OR_ELIM : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Not Or elimination

    .. math:: \inferrule{\neg(F_1 \lor \dots \lor F_n) \mid i}{\neg F_i}

    \endverbatim

  • IMPLIES_ELIM : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Implication elimination

    .. math:: \inferrule{F_1 \rightarrow F_2 \mid -}{\neg F_1 \lor F_2}

    \endverbatim

  • NOT_IMPLIES_ELIM1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Not Implication elimination version 1

    .. math:: \inferrule{\neg(F_1 \rightarrow F_2) \mid -}{F_1}

    \endverbatim

  • NOT_IMPLIES_ELIM2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Not Implication elimination version 2

    .. math:: \inferrule{\neg(F_1 \rightarrow F_2) \mid -}{\neg F_2}

    \endverbatim

  • EQUIV_ELIM1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Equivalence elimination version 1

    .. math:: \inferrule{F_1 = F_2 \mid -}{\neg F_1 \lor F_2}

    \endverbatim

  • EQUIV_ELIM2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Equivalence elimination version 2

    .. math:: \inferrule{F_1 = F_2 \mid -}{F_1 \lor \neg F_2}

    \endverbatim

  • NOT_EQUIV_ELIM1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Not Equivalence elimination version 1

    .. math:: \inferrule{F_1 \neq F_2 \mid -}{F_1 \lor F_2}

    \endverbatim

  • NOT_EQUIV_ELIM2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Not Equivalence elimination version 2

    .. math:: \inferrule{F_1 \neq F_2 \mid -}{\neg F_1 \lor \neg F_2}

    \endverbatim

  • XOR_ELIM1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- XOR elimination version 1

    .. math:: \inferrule{F_1 \xor F_2 \mid -}{F_1 \lor F_2}

    \endverbatim

  • XOR_ELIM2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- XOR elimination version 2

    .. math:: \inferrule{F_1 \xor F_2 \mid -}{\neg F_1 \lor \neg F_2}

    \endverbatim

  • NOT_XOR_ELIM1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Not XOR elimination version 1

    .. math:: \inferrule{\neg(F_1 \xor F_2) \mid -}{F_1 \lor \neg F_2}

    \endverbatim

  • NOT_XOR_ELIM2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Not XOR elimination version 2

    .. math:: \inferrule{\neg(F_1 \xor F_2) \mid -}{\neg F_1 \lor F_2}

    \endverbatim

  • ITE_ELIM1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- ITE elimination version 1

    .. math:: \inferrule{(\ite{C}{F_1}{F_2}) \mid -}{\neg C \lor F_1}

    \endverbatim

  • ITE_ELIM2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- ITE elimination version 2

    .. math:: \inferrule{(\ite{C}{F_1}{F_2}) \mid -}{C \lor F_2}

    \endverbatim

  • NOT_ITE_ELIM1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Not ITE elimination version 1

    .. math:: \inferrule{\neg(\ite{C}{F_1}{F_2}) \mid -}{\neg C \lor \neg F_1}

    \endverbatim

  • NOT_ITE_ELIM2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- Not ITE elimination version 2

    .. math:: \inferrule{\neg(\ite{C}{F_1}{F_2}) \mid -}{C \lor \neg F_2}

    \endverbatim

  • NOT_AND : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- De Morgan -- Not And

    .. math:: \inferrule{\neg(F_1 \land \dots \land F_n) \mid -}{\neg F_1 \lor \dots \lor \neg F_n}

    \endverbatim

  • CNF_AND_POS : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- And Positive

    .. math:: \inferrule{- \mid (F_1 \land \dots \land F_n), i}{\neg (F_1 \land \dots \land F_n) \lor F_i}

    \endverbatim

  • CNF_AND_NEG : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- And Negative

    .. math:: \inferrule{- \mid (F_1 \land \dots \land F_n)}{(F_1 \land \dots \land F_n) \lor \neg F_1 \lor \dots \lor \neg F_n}

    \endverbatim

  • CNF_OR_POS : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- Or Positive

    .. math:: \inferrule{- \mid (F_1 \lor \dots \lor F_n)}{\neg(F_1 \lor \dots \lor F_n) \lor F_1 \lor \dots \lor F_n}

    \endverbatim

  • CNF_OR_NEG : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- Or Negative

    .. math:: \inferrule{- \mid (F_1 \lor \dots \lor F_n), i}{(F_1 \lor \dots \lor F_n) \lor \neg F_i}

    \endverbatim

  • CNF_IMPLIES_POS : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- Implies Positive

    .. math:: \inferrule{- \mid F_1 \rightarrow F_2}{\neg(F_1 \rightarrow F_2) \lor \neg F_1 \lor F_2}

    \endverbatim

  • CNF_IMPLIES_NEG1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- Implies Negative 1

    .. math:: \inferrule{- \mid F_1 \rightarrow F_2}{(F_1 \rightarrow F_2) \lor F_1}

    \endverbatim

  • CNF_IMPLIES_NEG2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- Implies Negative 2

    .. math:: \inferrule{- \mid F_1 \rightarrow F_2}{(F_1 \rightarrow F_2) \lor \neg F_2}

    \endverbatim

  • CNF_EQUIV_POS1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- Equiv Positive 1

    .. math:: \inferrule{- \mid F_1 = F_2}{F_1 \neq F_2 \lor \neg F_1 \lor F_2}

    \endverbatim

  • CNF_EQUIV_POS2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- Equiv Positive 2

    .. math:: \inferrule{- \mid F_1 = F_2}{F_1 \neq F_2 \lor F_1 \lor \neg F_2}

    \endverbatim

  • CNF_EQUIV_NEG1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- Equiv Negative 1

    .. math:: \inferrule{- \mid F_1 = F_2}{(F_1 = F_2) \lor F_1 \lor F_2}

    \endverbatim

  • CNF_EQUIV_NEG2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- Equiv Negative 2

    .. math:: \inferrule{- \mid F_1 = F_2}{(F_1 = F_2) \lor \neg F_1 \lor \neg F_2}

    \endverbatim

  • CNF_XOR_POS1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- XOR Positive 1

    .. math:: \inferrule{- \mid F_1 \xor F_2}{\neg(F_1 \xor F_2) \lor F_1 \lor F_2}

    \endverbatim

  • CNF_XOR_POS2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- XOR Positive 2

    .. math:: \inferrule{- \mid F_1 \xor F_2}{\neg(F_1 \xor F_2) \lor \neg F_1 \lor \neg F_2}

    \endverbatim

  • CNF_XOR_NEG1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- XOR Negative 1

    .. math:: \inferrule{- \mid F_1 \xor F_2}{(F_1 \xor F_2) \lor \neg F_1 \lor F_2}

    \endverbatim

  • CNF_XOR_NEG2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- XOR Negative 2

    .. math:: \inferrule{- \mid F_1 \xor F_2}{(F_1 \xor F_2) \lor F_1 \lor \neg F_2}

    \endverbatim

  • CNF_ITE_POS1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- ITE Positive 1

    .. math:: \inferrule{- \mid (\ite{C}{F_1}{F_2})}{\neg(\ite{C}{F_1}{F_2}) \lor \neg C \lor F_1}

    \endverbatim

  • CNF_ITE_POS2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- ITE Positive 2

    .. math:: \inferrule{- \mid (\ite{C}{F_1}{F_2})}{\neg(\ite{C}{F_1}{F_2}) \lor C \lor F_2}

    \endverbatim

  • CNF_ITE_POS3 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- ITE Positive 3

    .. math:: \inferrule{- \mid (\ite{C}{F_1}{F_2})}{\neg(\ite{C}{F_1}{F_2}) \lor F_1 \lor F_2}

    \endverbatim

  • CNF_ITE_NEG1 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- ITE Negative 1

    .. math:: \inferrule{- \mid (\ite{C}{F_1}{F_2})}{(\ite{C}{F_1}{F_2}) \lor \neg C \lor \neg F_1}

    \endverbatim

  • CNF_ITE_NEG2 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- ITE Negative 2

    .. math:: \inferrule{- \mid (\ite{C}{F_1}{F_2})}{(\ite{C}{F_1}{F_2}) \lor C \lor \neg F_2}

    \endverbatim

  • CNF_ITE_NEG3 : ProofRule

    \verbatim embed:rst:leading-asterisk Boolean -- CNF -- ITE Negative 3

    .. math:: \inferrule{- \mid (\ite{C}{F_1}{F_2})}{(\ite{C}{F_1}{F_2}) \lor \neg F_1 \lor \neg F_2}

    \endverbatim

  • REFL : ProofRule

    \verbatim embed:rst:leading-asterisk Equality -- Reflexivity

    .. math::

    \inferrule{-\mid t}{t = t} \endverbatim

  • SYMM : ProofRule

    \verbatim embed:rst:leading-asterisk Equality -- Symmetry

    .. math::

    \inferrule{t_1 = t_2\mid -}{t_2 = t_1}

    or

    .. math::

    \inferrule{t_1 \neq t_2\mid -}{t_2 \neq t_1}

    \endverbatim

  • TRANS : ProofRule

    \verbatim embed:rst:leading-asterisk Equality -- Transitivity

    .. math::

    \inferrule{t_1=t_2,\dots,t_{n-1}=t_n\mid -}{t_1 = t_n} \endverbatim

  • CONG : ProofRule

    \verbatim embed:rst:leading-asterisk Equality -- Congruence

    .. math::

    \inferrule{t_1=s_1,\dots,t_n=s_n\mid f(t_1,\dots, t_n)}{f(t_1,\dots, t_n) = f(s_1,\dots, s_n)}

    This rule is used when the kind of :math:f(t_1,\dots, t_n) has a fixed arity. This includes kinds such as cvc5::Kind::ITE, cvc5::Kind::EQUAL, as well as indexed functions such as cvc5::Kind::BITVECTOR_EXTRACT.

    It is also used for cvc5::Kind::APPLY_UF, where :math:f is an uninterpreted function.

    It is not used for kinds with variadic arity, or for kind cvc5::Kind::HO_APPLY, which respectively use the rules :cpp:enumerator:NARY_CONG <cvc5::ProofRule::NARY_CONG> and :cpp:enumerator:HO_CONG <cvc5::ProofRule::HO_CONG> below. \endverbatim

  • NARY_CONG : ProofRule

    \verbatim embed:rst:leading-asterisk Equality -- N-ary Congruence

    .. math::

    \inferrule{t_1=s_1,\dots,t_n=s_n\mid f(t_1,\dots, t_n)}{f(t_1,\dots, t_n) = f(s_1,\dots, s_n)}

    This rule is used for terms :math:f(t_1,\dots, t_n) whose kinds :math:k have variadic arity, such as cvc5::Kind::AND, cvc5::Kind::PLUS and so on. \endverbatim

  • TRUE_INTRO : ProofRule

    \verbatim embed:rst:leading-asterisk Equality -- True intro

    .. math::

    \inferrule{F\mid -}{F = \top} \endverbatim

  • TRUE_ELIM : ProofRule

    \verbatim embed:rst:leading-asterisk Equality -- True elim

    .. math::

    \inferrule{F=\top\mid -}{F} \endverbatim

  • FALSE_INTRO : ProofRule

    \verbatim embed:rst:leading-asterisk Equality -- False intro

    .. math::

    \inferrule{\neg F\mid -}{F = \bot} \endverbatim

  • FALSE_ELIM : ProofRule

    \verbatim embed:rst:leading-asterisk Equality -- False elim

    .. math::

    \inferrule{F=\bot\mid -}{\neg F} \endverbatim

  • HO_APP_ENCODE : ProofRule

    \verbatim embed:rst:leading-asterisk Equality -- Higher-order application encoding

    .. math::

    \inferrule{-\mid t}{t=t'}

    where t' is the higher-order application that is equivalent to t, as implemented by uf::TheoryUfRewriter::getHoApplyForApplyUf. For details see :cvc5src:theory/uf/theory_uf_rewriter.h

    For example, this rule concludes :math:f(x,y) = @( @(f,x), y), where :math:@ is the HO_APPLY kind.

    Note this rule can be treated as a :cpp:enumerator:REFL <cvc5::ProofRule::REFL> when appropriate in external proof formats. \endverbatim

  • HO_CONG : ProofRule

    \verbatim embed:rst:leading-asterisk Equality -- Higher-order congruence

    .. math::

    \inferrule{f=g, t_1=s_1,\dots,t_n=s_n\mid k}{k(f, t_1,\dots, t_n) = k(g, s_1,\dots, s_n)}

    Notice that this rule is only used when the application kind :math:k is either cvc5::Kind::APPLY_UF or cvc5::Kind::HO_APPLY. \endverbatim

  • ARRAYS_READ_OVER_WRITE : ProofRule

    \verbatim embed:rst:leading-asterisk Arrays -- Read over write

    .. math::

    \inferrule{i_1 \neq i_2\mid \mathit{select}(\mathit{store}(a,i_1,e),i_2)} {\mathit{select}(\mathit{store}(a,i_1,e),i_2) = \mathit{select}(a,i_2)} \endverbatim

  • ARRAYS_READ_OVER_WRITE_CONTRA : ProofRule

    \verbatim embed:rst:leading-asterisk Arrays -- Read over write, contrapositive

    .. math::

    \inferrule{\mathit{select}(\mathit{store}(a,i_2,e),i_1) \neq \mathit{select}(a,i_1)\mid -}{i_1=i_2} \endverbatim

  • ARRAYS_READ_OVER_WRITE_1 : ProofRule

    \verbatim embed:rst:leading-asterisk Arrays -- Read over write 1

    .. math::

    \inferrule{-\mid \mathit{select}(\mathit{store}(a,i,e),i)} {\mathit{select}(\mathit{store}(a,i,e),i)=e} \endverbatim

  • ARRAYS_EXT : ProofRule

    \verbatim embed:rst:leading-asterisk Arrays -- Arrays extensionality

    .. math::

    \inferrule{a \neq b\mid -} {\mathit{select}(a,k)\neq\mathit{select}(b,k)}

    where :math:k is the :math:\texttt{ARRAY_DEQ_DIFF} skolem for (a, b). \endverbatim

  • MACRO_BV_BITBLAST : ProofRule

    \verbatim embed:rst:leading-asterisk Bit-vectors -- (Macro) Bitblast

    .. math::

    \inferrule{-\mid t}{t = \texttt{bitblast}(t)}

    where :math:\texttt{bitblast} represents the result of the bit-blasted term as a bit-vector consisting of the output bits of the bit-blasted circuit representation of the term. Terms are bit-blasted according to the strategies defined in :cvc5src:theory/bv/bitblast/bitblast_strategies_template.h. \endverbatim

  • BV_BITBLAST_STEP : ProofRule

    \verbatim embed:rst:leading-asterisk Bit-vectors -- Bitblast bit-vector constant, variable, and terms

    For constant and variables:

    .. math::

    \inferrule{-\mid t}{t = \texttt{bitblast}(t)}

    For terms:

    .. math::

    \inferrule{-\mid k(\texttt{bitblast}(t_1),\dots,\texttt{bitblast}(t_n))} {k(\texttt{bitblast}(t_1),\dots,\texttt{bitblast}(t_n)) = \texttt{bitblast}(t)}

    where :math:t is :math:k(t_1,\dots,t_n). \endverbatim

  • BV_EAGER_ATOM : ProofRule

    \verbatim embed:rst:leading-asterisk Bit-vectors -- Bit-vector eager atom

    .. math::

    \inferrule{-\mid F}{F = F[0]}

    where :math:F is of kind BITVECTOR_EAGER_ATOM. \endverbatim

  • BV_POLY_NORM : ProofRule

    \verbatim embed:rst:leading-asterisk Bit-vectors -- Polynomial normalization

    .. math:: \inferrule{- \mid t = s}{t = s}

    where :math:\texttt{arith::PolyNorm::isArithPolyNorm(t, s)} = \top. This method normalizes polynomials :math:s and :math:t over bitvectors. \endverbatim

  • BV_POLY_NORM_EQ : ProofRule

    \verbatim embed:rst:leading-asterisk Bit-vectors -- Polynomial normalization for relations

    .. math:: \inferrule{c_x \cdot (x_1 - x_2) = c_y \cdot (y_1 - y_2) \mid (x_1 = x_2) = (y_1 = y_2)} {(x_1 = x_2) = (y_1 = y_2)}

    :math:c_x and :math:c_y are scaling factors, currently required to be one. \endverbatim

  • DT_SPLIT : ProofRule

    \verbatim embed:rst:leading-asterisk Datatypes -- Split

    .. math::

    \inferrule{-\mid t}{\mathit{is}{C_1}(t)\vee\cdots\vee\mathit{is}{C_n}(t)}

    where :math:C_1,\dots,C_n are all the constructors of the type of :math:t. \endverbatim

  • SKOLEM_INTRO : ProofRule

    \verbatim embed:rst:leading-asterisk Quantifiers -- Skolem introduction

    .. math::

    \inferrule{-\mid k}{k = t}

    where :math:t is the unpurified form of skolem :math:k. \endverbatim

  • SKOLEMIZE : ProofRule

    \verbatim embed:rst:leading-asterisk Quantifiers -- Skolemization

    .. math::

    \inferrule{\neg (\forall x_1\dots x_n.> F)\mid -}{\neg F\sigma}

    where :math:\sigma maps :math:x_1,\dots,x_n to their representative skolems, which are skolems :math:k_1,\dots,k_n. For each :math:k_i, its skolem identifier is :cpp:enumerator:QUANTIFIERS_SKOLEMIZE <cvc5::SkolemId::QUANTIFIERS_SKOLEMIZE>, and its indices are :math:(\forall x_1\dots x_n.\> F) and :math:x_i. \endverbatim

  • INSTANTIATE : ProofRule

    \verbatim embed:rst:leading-asterisk Quantifiers -- Instantiation

    .. math::

    \inferrule{\forall x_1\dots x_n.> F\mid (t_1 \dots t_n), (id, (t)?)?} {F{x_1\mapsto t_1,\dots,x_n\mapsto t_n}}

    The list of terms to instantiate :math:(t_1 \dots t_n) is provided as an s-expression as the first argument. The optional argument :math:id indicates the inference id that caused the instantiation. The term :math:t indicates an additional term (e.g. the trigger) associated with the instantiation, which depends on the id. If the id has prefix QUANTIFIERS_INST_E_MATCHING, then :math:t is the trigger that generated the instantiation. \endverbatim

  • ALPHA_EQUIV : ProofRule

    \verbatim embed:rst:leading-asterisk Quantifiers -- Alpha equivalence

    .. math::

    \inferruleSC{-\mid F, (y_1 \ldots y_n), (z_1,\dots, z_n)} {F = F{y_1\mapsto z_1,\dots,y_n\mapsto z_n}} {if $y_1,\dots,y_n, z_1,\dots,z_n$ are unique bound variables}

    Notice that this rule is correct only when :math:z_1,\dots,z_n are not contained in :math:FV(F) \setminus \{ y_1,\dots, y_n \}, where :math:FV(F) are the free variables of :math:F. The internal quantifiers proof checker does not currently check that this is the case. \endverbatim

  • QUANT_VAR_REORDERING : ProofRule

    \verbatim embed:rst:leading-asterisk Quantifiers -- Variable reordering

    .. math::

    \inferrule{-\mid (\forall X.> F) = (\forall Y.> F)} {(\forall X.> F) = (\forall Y.> F)}

    where :math:Y is a reordering of :math:X.

    \endverbatim

  • EXISTS_STRING_LENGTH : ProofRule

    \verbatim embed:rst:leading-asterisk Quantifiers -- Exists string length

    .. math:: \inferrule{-\mid T n i} {\mathit{len}(k) = n}

    where :math:k is a skolem of string or sequence type :math:T and :math:n is a non-negative integer. The argument :math:i is an identifier for :math:k. These three arguments are the indices of :math:k, whose skolem identifier is :cpp:enumerator:WITNESS_STRING_LENGTH <cvc5::SkolemId::WITNESS_STRING_LENGTH>.

    \endverbatim

  • SETS_SINGLETON_INJ : ProofRule

    \verbatim embed:rst:leading-asterisk Sets -- Singleton injectivity

    .. math::

    \inferrule{\mathit{set.singleton}(t) = \mathit{set.singleton}(s)\mid -}{t=s} \endverbatim

  • SETS_EXT : ProofRule

    \verbatim embed:rst:leading-asterisk Sets -- Sets extensionality

    .. math::

    \inferrule{a \neq b\mid -} {\mathit{set.member}(k,a)\neq\mathit{set.member}(k,b)}

    where :math:k is the :math:\texttt{SETS_DEQ_DIFF} skolem for (a, b). \endverbatim

  • SETS_FILTER_UP : ProofRule

    \verbatim embed:rst:leading-asterisk Sets -- Sets filter up

    .. math::

    \inferrule{\mathit{set.member}(x,a)\mid P} {\mathit{set.member}(x, \mathit{set.filter}(P, a)) = P(x)}

    \endverbatim

  • SETS_FILTER_DOWN : ProofRule

    \verbatim embed:rst:leading-asterisk Sets -- Sets filter down

    .. math::

    \inferrule{\mathit{set.member}(x,\mathit{set.filter}(P, a))\mid -} {\mathit{set.member}(x,a) \wedge P(x)} \endverbatim

  • CONCAT_EQ : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Core rules -- Concatenation equality

    .. math::

    \inferrule{(t_1 \cdot \ldots \cdot t_n \cdot t) = (t_1 \cdot \ldots \cdot t_n \cdot s)\mid \bot}{t = s}

    Alternatively for the reverse:

    \inferrule{(t \cdot t_1 \cdot \ldots \cdot t_n) = (s \cdot t_1 \cdot \ldots \cdot t_n)\mid \top}{t = s}

    Notice that :math:t or :math:s may be empty, in which case they are implicit in the concatenation above. For example, if the premise is :math:x\cdot z = x, then this rule, with argument :math:\bot, concludes :math:z = \epsilon. \endverbatim

  • CONCAT_UNIFY : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Core rules -- Concatenation unification

    .. math::

    \inferrule{(t_1 \cdot \ldots \cdot t_n) = (s_1 \cdot \ldots \cdot s_m),, \mathit{len}(t_1) = \mathit{len}(s_1)\mid \bot}{t_1 = s_1}

    Alternatively for the reverse:

    .. math::

    \inferrule{(t_1 \cdot \ldots \cdot t_n) = (s_1 \cdot \ldots \cdot s_m),, \mathit{len}(t_n) = \mathit{len}(s_m)\mid \top}{t_n = s_m}

    \endverbatim

  • CONCAT_SPLIT : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Core rules -- Concatenation split

    .. math::

    \inferruleSC{(t_1 \cdot \ldots \cdot t_n) = (s_1 \cdot \ldots \cdot s_m),, \mathit{len}(t_1) \neq \mathit{len}(s_1)\mid \bot}{((t_1 = s_1\cdot r) \vee (s_1 = t_1\cdot r)) \wedge r \neq \epsilon \wedge \mathit{len}(r)>0}

    where :math:r is the purification skolem for :math:\mathit{ite}( \mathit{len}(t_1) >= \mathit{len}(s_1), \mathit{suf}(t_1,\mathit{len}(s_1)), \mathit{suf}(s_1,\mathit{len}(t_1))) and :math:\epsilon is the empty string (or sequence).

    .. math::

    \inferruleSC{(t_1 \cdot \ldots \cdot t_n) = (s_1 \cdot \ldots \cdot s_m),, \mathit{len}(t_n) \neq \mathit{len}(s_m)\mid \top}{((t_n = r \cdot s_m) \vee (s_m = r \cdot t_n)) \wedge r \neq \epsilon \wedge \mathit{len}(r)>0}

    where :math:r is the purification Skolem for :math:\mathit{ite}( \mathit{len}(t_n) >= \mathit{len}(s_m), \mathit{pre}(t_n,\mathit{len}(t_n) - \mathit{len}(s_m)), \mathit{pre}(s_m,\mathit{len}(s_m) - \mathit{len}(t_n))) and :math:\epsilon is the empty string (or sequence).

    Above, :math:\mathit{suf}(x,y) is shorthand for :math:\mathit{substr}(x,y, \mathit{len}(x) - y) and :math:\mathit{pre}(x,y) is shorthand for :math:\mathit{substr}(x,0,y). \endverbatim

  • CONCAT_CSPLIT : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Core rules -- Concatenation split for constants

    .. math::

    \inferrule{(t_1\cdot \ldots \cdot t_n) = (c \cdot t_2 \ldots \cdot s_m),,\mathit{len}(t_1) \neq 0\mid \bot}{(t_1 = c\cdot r)}

    where :math:r is the purification skolem for :math:\mathit{suf}(t_1,1).

    Alternatively for the reverse:

    .. math::

    \inferrule{(t_1\cdot \ldots \cdot t_n) = (s_1 \cdot \ldots s_{m-1} \cdot c),,\mathit{len}(t_n) \neq 0\mid \top}{(t_n = r\cdot c)}

    where :math:r is the purification skolem for :math:\mathit{pre}(t_n,\mathit{len}(t_n) - 1). \endverbatim

  • CONCAT_LPROP : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Core rules -- Concatenation length propagation

    .. math::

    \inferrule{(t_1\cdot \ldots \cdot t_n) = (s_1 \cdot \ldots \cdot s_m),, \mathit{len}(t_1) > \mathit{len}(s_1)\mid \bot}{(t_1 = s_1\cdot r)}

    where :math:r is the purification Skolem for :math:\mathit{ite}( \mathit{len}(t_1) >= \mathit{len}(s_1), \mathit{suf}(t_1,\mathit{len}(s_1)), \mathit{suf}(s_1,\mathit{len}(t_1))).

    Alternatively for the reverse:

    .. math::

    \inferrule{(t_1\cdot \ldots \cdot t_n) = (s_1 \cdot \ldots \cdot s_m)),, \mathit{len}(t_n) > \mathit{len}(s_m)\mid \top}{(t_n = r \cdot s_m)}

    where :math:r is the purification Skolem for :math:\mathit{ite}( \mathit{len}(t_n) >= \mathit{len}(s_m), \mathit{pre}(t_n,\mathit{len}(t_n) - \mathit{len}(s_m)), \mathit{pre}(s_m,\mathit{len}(s_m) - \mathit{len}(t_n))) \endverbatim

  • CONCAT_CPROP : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Core rules -- Concatenation constant propagation

    .. math::

    \inferrule{(t_1 \cdot w_1 \cdot \ldots \cdot t_n) = (w_2 \cdot s_2 \cdot \ldots \cdot s_m),, \mathit{len}(t_1) \neq 0\mid \bot}{(t_1 = t_3\cdot r)}

    where :math:w_1,\,w_2 are words, :math:t_3 is :math:\mathit{pre}(w_2,p), :math:p is :math:\texttt{Word::overlap}(\mathit{suf}(w_2,1), w_1), and :math:r is the purification skolem for :math:\mathit{suf}(t_1,\mathit{len}(w_3)). Note that :math:\mathit{suf}(w_2,p) is the largest suffix of :math:\mathit{suf}(w_2,1) that can contain a prefix of :math:w_1; since :math:t_1 is non-empty, :math:w_3 must therefore be contained in :math:t_1.

    Alternatively for the reverse:

    .. math::

    \inferrule{(t_1 \cdot \ldots \cdot w_1 \cdot t_n) = (s_1 \cdot \ldots \cdot w_2),, \mathit{len}(t_n) \neq 0\mid \top}{(t_n = r\cdot t_3)}

    where :math:w_1,\,w_2 are words, :math:t_3 is :math:\mathit{substr}(w_2, \mathit{len}(w_2) - p, p), :math:p is :math:\texttt{Word::roverlap}(\mathit{pre}(w_2, \mathit{len}(w_2) - 1), w_1), and :math:r is the purification skolem for :math:\mathit{pre}(t_n,\mathit{len}(t_n) - \mathit{len}(w_3)). Note that :math:\mathit{pre}(w_2, \mathit{len}(w_2) - p) is the largest prefix of :math:\mathit{pre}(w_2, \mathit{len}(w_2) - 1) that can contain a suffix of :math:w_1; since :math:t_n is non-empty, :math:w_3 must therefore be contained in :math:t_n. \endverbatim

  • STRING_DECOMPOSE : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Core rules -- String decomposition

    .. math::

    \inferrule{\mathit{len}(t) \geq n\mid \bot}{t = w_1\cdot w_2 \wedge \mathit{len}(w_1) = n}

    where :math:w_1 is the purification skolem for :math:\mathit{pre}(t,n) and :math:w_2 is the purification skolem for :math:\mathit{suf}(t,n). Or alternatively for the reverse:

    .. math::

    \inferrule{\mathit{len}(t) \geq n\mid \top}{t = w_1\cdot w_2 \wedge \mathit{len}(w_2) = n}

    where :math:w_1 is the purification skolem for :math:\mathit{pre}(t,n) and :math:w_2 is the purification skolem for :math:\mathit{suf}(t,n). \endverbatim

  • STRING_LENGTH_POS : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Core rules -- Length positive

    .. math::

    \inferrule{-\mid t}{(\mathit{len}(t) = 0\wedge t= \epsilon)\vee \mathit{len}(t)

    0} \endverbatim

  • STRING_LENGTH_NON_EMPTY : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Core rules -- Length non-empty

    .. math::

    \inferrule{t\neq \epsilon\mid -}{\mathit{len}(t) \neq 0} \endverbatim

  • STRING_REDUCTION : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Extended functions -- Reduction

    .. math::

    \inferrule{-\mid t}{R\wedge t = w}

    where :math:w is :math:\texttt{StringsPreprocess::reduce}(t, R, \dots). For details, see :cvc5src:theory/strings/theory_strings_preprocess.h. In other words, :math:R is the reduction predicate for extended term :math:t, and :math:w is the purification skolem for :math:t.

    Notice that the free variables of :math:R are :math:w and the free variables of :math:t. \endverbatim

  • STRING_EAGER_REDUCTION : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Extended functions -- Eager reduction

    .. math::

    \inferrule{-\mid t}{R}

    where :math:R is :math:\texttt{TermRegistry::eagerReduce}(t). For details, see :cvc5src:theory/strings/term_registry.h. \endverbatim

  • RE_INTER : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Regular expressions -- Intersection

    .. math::

    \inferrule{t\in R_1,,t\in R_2\mid -}{t\in \mathit{re.inter}(R_1,R_2)} \endverbatim

  • RE_CONCAT : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Regular expressions -- Concatenation

    .. math::

    \inferrule{t_1\in R_1,,\ldots,,t_n\in R_n\mid -}{\text{str.++}(t_1, \ldots, t_n)\in \text{re.++}(R_1, \ldots, R_n)} \endverbatim

  • RE_UNFOLD_POS : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Regular expressions -- Positive Unfold

    .. math::

    \inferrule{t\in R\mid -}{F}

    where :math:F corresponds to the one-step unfolding of the premise. This is implemented by :math:\texttt{RegExpOpr::reduceRegExpPos}(t\in R). \endverbatim

  • RE_UNFOLD_NEG : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Regular expressions -- Negative Unfold

    .. math::

    \inferrule{t \not \in \mathit{re}.\text{}(R) \mid -}{t \neq \ \epsilon \ \wedge \forall L. L \leq 0 \vee \mathit{str.len}(t) < L \vee \mathit{pre}(t, L) \not \in R \vee \mathit{suf}(t, L) \not \in \mathit{re}.\text{}(R)}

    Or alternatively for regular expression concatenation:

    .. math::

    \inferrule{t \not \in \mathit{re}.\text{++}(R_1, \ldots, R_n)\mid -}{\forall L. L < 0 \vee \mathit{str.len}(t) < L \vee \mathit{pre}(t, L) \not \in R_1 \vee \mathit{suf}(t, L) \not \in \mathit{re}.\text{++}(R_2, \ldots, R_n)}

    Note that in either case the varaible :math:L has type :math:Int and name "@var.str_index".

    \endverbatim

  • RE_UNFOLD_NEG_CONCAT_FIXED : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Regular expressions -- Unfold negative concatenation, fixed

    .. math::

    \inferrule{t\not\in \mathit{re}.\text{re.++}(r_1, \ldots, r_n) \mid \bot}{ \mathit{pre}(t, L) \not \in r_1 \vee \mathit{suf}(t, L) \not \in \mathit{re}.\text{re.++}(r_2, \ldots, r_n)}

    where :math:r_1 has fixed length :math:L.

    or alternatively for the reverse:

    .. math::

    \inferrule{t \not \in \mathit{re}.\text{re.++}(r_1, \ldots, r_n) \mid \top}{ \mathit{suf}(t, str.len(t) - L) \not \in r_n \vee \mathit{pre}(t, str.len(t) - L) \not \in \mathit{re}.\text{re.++}(r_1, \ldots, r_{n-1})}

    where :math:r_n has fixed length :math:L.

    \endverbatim

  • STRING_CODE_INJ : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Code points

    .. math::

    \inferrule{-\mid t,s}{\mathit{to_code}(t) = -1 \vee \mathit{to_code}(t) \neq \mathit{to_code}(s) \vee t = s} \endverbatim

  • STRING_SEQ_UNIT_INJ : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Sequence unit

    .. math::

    \inferrule{\mathit{unit}(x) = \mathit{unit}(y)\mid -}{x = y}

    Also applies to the case where :math:\mathit{unit}(y) is a constant sequence of length one. \endverbatim

  • STRING_EXT : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- Extensionality

    .. math::

    \inferrule{s \neq t\mid -} {\mathit{seq.len}(s) \neq \mathit{seq.len}(t) \vee (\mathit{seq.nth}(s,k)\neq\mathit{set.nth}(t,k) \wedge 0 \leq k \wedge k < \mathit{seq.len}(s))}

    where :math:s,t are terms of sequence type, :math:k is the :math:\texttt{STRINGS_DEQ_DIFF} skolem for :math:s,t. Alternatively, if :math:s,t are terms of string type, we use :math:\mathit{seq.substr}(s,k,1) instead of :math:\mathit{seq.nth}(s,k) and similarly for :math:t.

    \endverbatim

  • MACRO_STRING_INFERENCE : ProofRule

    \verbatim embed:rst:leading-asterisk Strings -- (Macro) String inference

    .. math::

    \inferrule{?\mid F,\mathit{id},\mathit{isRev},\mathit{exp}}{F}

    used to bookkeep an inference that has not yet been converted via :math:\texttt{strings::InferProofCons::convert}. \endverbatim

  • MACRO_ARITH_SCALE_SUM_UB : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Adding inequalities

    An arithmetic literal is a term of the form :math:p \diamond c where :math:\diamond \in \{ <, \leq, =, \geq, > \}, :math:p a polynomial and :math:c a rational constant.

    .. math:: \inferrule{l_1 \dots l_n \mid k_1 \dots k_n}{t_1 \diamond t_2}

    where :math:k_i \in \mathbb{R}, k_i \neq 0, :math:\diamond is the fusion of the :math:\diamond_i (flipping each if its :math:k_i is negative) such that :math:\diamond_i \in \{ <, \leq \} (this implies that lower bounds have negative :math:k_i and upper bounds have positive :math:k_i), :math:t_1 is the sum of the scaled polynomials and :math:t_2 is the sum of the scaled constants:

    .. math:: t_1 \colon= k_1 \cdot p_1 + \cdots + k_n \cdot p_n

    t_2 \colon= k_1 \cdot c_1 + \cdots + k_n \cdot c_n

    \endverbatim

  • ARITH_MULT_ABS_COMPARISON : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Non-linear multiply absolute value comparison

    .. math:: \inferrule{F_1 \dots F_n \mid -}{F}

    where :math:F is of the form :math:\left| t_1 \cdot t_n \right| \diamond \left| s_1 \cdot s_n \right|. If :math:\diamond is :math:=, then each :math:F_i is :math:\left| t_i \right| = \left| s_i \right|.

    If :math:\diamond is :math:>, then each :math:F_i is either :math:\left| t_i \right| > \left| s_i \right| or :math:\left| t_i \right| = \left| s_i \right| \land t_i \neq 0, and :math:F_1 is of the former form.

    \endverbatim

  • ARITH_SUM_UB : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Sum upper bounds

    .. math:: \inferrule{P_1 \dots P_n \mid -}{L \diamond R}

    where :math:P_i has the form :math:L_i \diamond_i R_i and :math:\diamond_i \in \{<, \leq, =\}. Furthermore :math:\diamond = < if :math:\diamond_i = < for any :math:i and :math:\diamond = \leq otherwise, :math:L = L_1 + \cdots + L_n and :math:R = R_1 + \cdots + R_n. \endverbatim

  • INT_TIGHT_UB : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Tighten strict integer upper bounds

    .. math:: \inferrule{i < c \mid -}{i \leq \lfloor c \rfloor}

    where :math:i has integer type. \endverbatim

  • INT_TIGHT_LB : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Tighten strict integer lower bounds

    .. math:: \inferrule{i > c \mid -}{i \geq \lceil c \rceil}

    where :math:i has integer type. \endverbatim

  • ARITH_TRICHOTOMY : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Trichotomy of the reals

    .. math:: \inferrule{A, B \mid -}{C}

    where :math:\neg A, \neg B, C are :math:x < c, x = c, x > c in some order. Note that :math:\neg here denotes arithmetic negation, i.e., flipping :math:\geq to :math:< etc. \endverbatim

  • ARITH_REDUCTION : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Reduction

    .. math:: \inferrule{- \mid t}{F}

    where :math:t is an application of an extended arithmetic operator (e.g. division, modulus, cosine, sqrt, is_int, to_int) and :math:F is the reduction predicate for :math:t. In other words, :math:F is a predicate that is used to reduce reasoning about :math:t to reasoning about the core operators of arithmetic.

    In detail, :math:F is implemented by :math:\texttt{arith::OperatorElim::getAxiomFor(t)}, see :cvc5src:theory/arith/operator_elim.h. \endverbatim

  • ARITH_POLY_NORM : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Polynomial normalization

    .. math:: \inferrule{- \mid t = s}{t = s}

    where :math:\texttt{arith::PolyNorm::isArithPolyNorm(t, s)} = \top. This method normalizes polynomials :math:s and :math:t over arithmetic. \endverbatim

  • ARITH_POLY_NORM_REL : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Polynomial normalization for relations

    .. math:: \inferrule{c_x \cdot (x_1 - x_2) = c_y \cdot (y_1 - y_2) \mid (x_1 \diamond x_2) = (y_1 \diamond y_2)} {(x_1 \diamond x_2) = (y_1 \diamond y_2)}

    where :math:\diamond \in \{<, \leq, =, \geq, >\}. :math:c_x and :math:c_y are scaling factors. For :math:<, \leq, \geq, >, the scaling factors have the same sign.

    If :math:c_x has type :math:Real and :math:x_1, x_2 are of type :math:Int, then :math:(x_1 - x_2) is wrapped in an application of to_real, similarly for :math:(y_1 - y_2). \endverbatim

  • ARITH_MULT_SIGN : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Sign inference

    .. math:: \inferrule{- \mid f_1 \dots f_k, m}{(f_1 \land \dots \land f_k) \rightarrow m \diamond 0}

    where :math:f_1 \dots f_k are variables compared to zero (less, greater or not equal), :math:m is a monomial from these variables and :math:\diamond is the comparison (less or greater) that results from the signs of the variables. In particular, :math:\diamond is :math< if :math:f_1 \dots f_k contains an odd number of :math<. Otherwise :math:\diamond is :math>. All variables with even exponent in :math:m are given as not equal to zero while all variables with odd exponent in :math:m should be given as less or greater than zero. \endverbatim

  • ARITH_MULT_POS : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Multiplication with positive factor

    .. math:: \inferrule{- \mid m, l \diamond r}{(m > 0 \land l \diamond r) \rightarrow m \cdot l \diamond m \cdot r}

    where :math:\diamond is a relation symbol. \endverbatim

  • ARITH_MULT_NEG : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Multiplication with negative factor

    .. math:: \inferrule{- \mid m, l \diamond r}{(m < 0 \land l \diamond r) \rightarrow m \cdot l \diamond_{inv} m \cdot r}

    where :math:\diamond is a relation symbol and :math:\diamond_{inv} the inverted relation symbol. \endverbatim

  • ARITH_MULT_TANGENT : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Multiplication tangent plane

    .. math:: \inferruleSC{- \mid x, y, a, b, \sigma}{(t \leq tplane) = ((x \leq a \land y \geq b) \lor (x \geq a \land y \leq b))}{if $\sigma = \bot$}

    \inferruleSC{- \mid x, y, a, b, \sigma}{(t \geq tplane) = ((x \leq a \land y \leq b) \lor (x \geq a \land y \geq b))}{if $\sigma = \top$}

    where :math:x,y are real terms (variables or extended terms), :math:t = x \cdot y, :math:a,b are real constants, :math:\sigma \in \{ \top, \bot\} and :math:tplane := b \cdot x + a \cdot y - a \cdot b is the tangent plane of :math:x \cdot y at :math:(a,b). \endverbatim

  • ARITH_TRANS_PI : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Assert bounds on Pi

    .. math:: \inferrule{- \mid l, u}{\texttt{real.pi} \geq l \land \texttt{real.pi} \leq u}

    where :math:l,u are valid lower and upper bounds on :math:\pi. \endverbatim

  • ARITH_TRANS_EXP_NEG : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Exp at negative values

    .. math:: \inferrule{- \mid t}{(t < 0) \leftrightarrow (\exp(t) < 1)} \endverbatim

  • ARITH_TRANS_EXP_POSITIVITY : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Exp is always positive

    .. math:: \inferrule{- \mid t}{\exp(t) > 0} \endverbatim

  • ARITH_TRANS_EXP_SUPER_LIN : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Exp grows super-linearly for positive values

    .. math:: \inferrule{- \mid t}{t \leq 0 \lor \exp(t) > t+1} \endverbatim

  • ARITH_TRANS_EXP_ZERO : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Exp at zero

    .. math:: \inferrule{- \mid t}{(t=0) \leftrightarrow (\exp(t) = 1)} \endverbatim

  • ARITH_TRANS_EXP_APPROX_ABOVE_NEG : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Exp is approximated from above for negative values

    .. math:: \inferrule{- \mid d,t,l,u}{(t \geq l \land t \leq u) \rightarrow exp(t) \leq \texttt{secant}(\exp, l, u, t)}

    where :math:d is an even positive number, :math:t an arithmetic term and :math:l,u are lower and upper bounds on :math:t. Let :math:p be the :math:d'th taylor polynomial at zero (also called the Maclaurin series) of the exponential function. :math:\texttt{secant}(\exp, l, u, t) denotes the secant of :math:p from :math:(l, \exp(l)) to :math:(u, \exp(u)) evaluated at :math:t, calculated as follows:

    .. math:: \frac{p(l) - p(u)}{l - u} \cdot (t - l) + p(l)

    The lemma states that if :math:t is between :math:l and :math:u, then :math:\exp(t is below the secant of :math:p from :math:l to :math:u. \endverbatim

  • ARITH_TRANS_EXP_APPROX_ABOVE_POS : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Exp is approximated from above for positive values

    .. math:: \inferrule{- \mid d,t,l,u}{(t \geq l \land t \leq u) \rightarrow exp(t) \leq \texttt{secant-pos}(\exp, l, u, t)}

    where :math:d is an even positive number, :math:t an arithmetic term and :math:l,u are lower and upper bounds on :math:t. Let :math:p^* be a modification of the :math:d'th taylor polynomial at zero (also called the Maclaurin series) of the exponential function as follows where :math:p(d-1) is the regular Maclaurin series of degree :math:d-1:

    .. math:: p^* := p(d-1) \cdot \frac{1 + t^n}{n!}

    :math:\texttt{secant-pos}(\exp, l, u, t) denotes the secant of :math:p from :math:(l, \exp(l)) to :math:(u, \exp(u)) evaluated at :math:t, calculated as follows:

    .. math:: \frac{p(l) - p(u)}{l - u} \cdot (t - l) + p(l)

    The lemma states that if :math:t is between :math:l and :math:u, then :math:\exp(t is below the secant of :math:p from :math:l to :math:u. \endverbatim

  • ARITH_TRANS_EXP_APPROX_BELOW : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Exp is approximated from below

    .. math:: \inferrule{- \mid d,c,t}{t \geq c \rightarrow exp(t) \geq \texttt{maclaurin}(\exp, d, c)}

    where :math:d is a non-negative number, :math:t an arithmetic term and :math:\texttt{maclaurin}(\exp, n+1, c) is the :math:(n+1)'th taylor polynomial at zero (also called the Maclaurin series) of the exponential function evaluated at :math:c where :math:n is :math:2 \cdot d. The Maclaurin series for the exponential function is the following:

    .. math:: \exp(x) = \sum_{i=0}^{\infty} \frac{x^i}{i!}

    This rule furthermore requires that :math:1 > c^{n+1}/(n+1)! \endverbatim

  • ARITH_TRANS_SINE_BOUNDS : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Sine is always between -1 and 1

    .. math:: \inferrule{- \mid t}{\sin(t) \leq 1 \land \sin(t) \geq -1} \endverbatim

  • ARITH_TRANS_SINE_SHIFT : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Sine is shifted to -pi...pi

    .. math:: \inferrule{- \mid x}{-\pi \leq y \leq \pi \land \sin(y) = \sin(x) \land (\ite{-\pi \leq x \leq \pi}{x = y}{x = y + 2 \pi s})}

    where :math:x is the argument to sine, :math:y is a new real skolem that is :math:x shifted into :math:-\pi \dots \pi and :math:s is a new integer skolem that is the number of phases :math:y is shifted. In particular, :math:y is the :cpp:enumerator:TRANSCENDENTAL_PURIFY_ARG <cvc5::SkolemId::TRANSCENDENTAL_PURIFY_ARG> skolem for :math:\sin(x) and :math:s is the :cpp:enumerator:TRANSCENDENTAL_SINE_PHASE_SHIFT <cvc5::SkolemId::TRANSCENDENTAL_SINE_PHASE_SHIFT> skolem for :math:x. \endverbatim

  • ARITH_TRANS_SINE_SYMMETRY : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Sine is symmetric with respect to negation of the argument

    .. math:: \inferrule{- \mid t}{\sin(t) - \sin(-t) = 0} \endverbatim

  • ARITH_TRANS_SINE_TANGENT_ZERO : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Sine is bounded by the tangent at zero

    .. math:: \inferrule{- \mid t}{(t > 0 \rightarrow \sin(t) < t) \land (t < 0 \rightarrow \sin(t) > t)} \endverbatim

  • ARITH_TRANS_SINE_TANGENT_PI : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Sine is bounded by the tangents at -pi and pi

    .. math:: \inferrule{- \mid t}{(t > -\pi \rightarrow \sin(t) > -\pi - t) \land (t < \pi \rightarrow \sin(t) < \pi - t)} \endverbatim

  • ARITH_TRANS_SINE_APPROX_ABOVE_NEG : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Sine is approximated from above for negative values

    .. math:: \inferrule{- \mid d,t,lb,ub,l,u}{(t \geq lb \land t \leq ub) \rightarrow \sin(t) \leq \texttt{secant}(\sin, l, u, t)}

    where :math:d is an even positive number, :math:t an arithmetic term, :math:lb,ub are symbolic lower and upper bounds on :math:t (possibly containing :math:\pi) and :math:l,u the evaluated lower and upper bounds on :math:t. Let :math:p be the :math:d'th taylor polynomial at zero (also called the Maclaurin series) of the sine function. :math:\texttt{secant}(\sin, l, u, t) denotes the secant of :math:p from :math:(l, \sin(l)) to :math:(u, \sin(u)) evaluated at :math:t, calculated as follows:

    .. math:: \frac{p(l) - p(u)}{l - u} \cdot (t - l) + p(l)

    The lemma states that if :math:t is between :math:l and :math:u, then :math:\sin(t) is below the secant of :math:p from :math:l to :math:u. \endverbatim

  • ARITH_TRANS_SINE_APPROX_ABOVE_POS : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Sine is approximated from above for positive values

    .. math:: \inferrule{- \mid d,t,c,lb,ub}{(t \geq lb \land t \leq ub) \rightarrow \sin(t) \leq \texttt{upper}(\sin, c)}

    where :math:d is an even positive number, :math:t an arithmetic term, :math:c an arithmetic constant and :math:lb,ub are symbolic lower and upper bounds on :math:t (possibly containing :math:\pi). Let :math:p be the :math:d'th taylor polynomial at zero (also called the Maclaurin series) of the sine function. :math:\texttt{upper}(\sin, c) denotes the upper bound on :math:\sin(c) given by :math:p and :math:lb,up such that :math:\sin(t) is the maximum of the sine function on :math:(lb,ub). \endverbatim

  • ARITH_TRANS_SINE_APPROX_BELOW_NEG : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Sine is approximated from below for negative values

    .. math:: \inferrule{- \mid d,t,c,lb,ub}{(t \geq lb \land t \leq ub) \rightarrow \sin(t) \geq \texttt{lower}(\sin, c)}

    where :math:d is an even positive number, :math:t an arithmetic term, :math:c an arithmetic constant and :math:lb,ub are symbolic lower and upper bounds on :math:t (possibly containing :math:\pi). Let :math:p be the :math:d'th taylor polynomial at zero (also called the Maclaurin series) of the sine function. :math:\texttt{lower}(\sin, c) denotes the lower bound on :math:\sin(c) given by :math:p and :math:lb,up such that :math:\sin(t) is the minimum of the sine function on :math:(lb,ub). \endverbatim

  • ARITH_TRANS_SINE_APPROX_BELOW_POS : ProofRule

    \verbatim embed:rst:leading-asterisk Arithmetic -- Transcendentals -- Sine is approximated from below for positive values

    .. math:: \inferrule{- \mid d,t,lb,ub,l,u}{(t \geq lb \land t \leq ub) \rightarrow \sin(t) \geq \texttt{secant}(\sin, l, u, t)}

    where :math:d is an even positive number, :math:t an arithmetic term, :math:lb,ub are symbolic lower and upper bounds on :math:t (possibly containing :math:\pi) and :math:l,u the evaluated lower and upper bounds on :math:t. Let :math:p be the :math:d'th taylor polynomial at zero (also called the Maclaurin series) of the sine function. :math:\texttt{secant}(\sin, l, u, t) denotes the secant of :math:p from :math:(l, \sin(l)) to :math:(u, \sin(u)) evaluated at :math:t, calculated as follows:

    .. math:: \frac{p(l) - p(u)}{l - u} \cdot (t - l) + p(l)

    The lemma states that if :math:t is between :math:l and :math:u, then :math:\sin(t) is above the secant of :math:p from :math:l to :math:u. \endverbatim

  • LFSC_RULE : ProofRule

    \verbatim embed:rst:leading-asterisk External -- LFSC

    Place holder for LFSC rules.

    .. math:: \inferrule{P_1, \dots, P_n\mid \texttt{id}, Q, A_1,\dots, A_m}{Q}

    Note that the premises and arguments are arbitrary. It's expected that :math:\texttt{id} refer to a proof rule in the external LFSC calculus. \endverbatim

  • ALETHE_RULE : ProofRule

    \verbatim embed:rst:leading-asterisk External -- Alethe

    Place holder for Alethe rules.

    .. math:: \inferrule{P_1, \dots, P_n\mid \texttt{id}, Q, Q', A_1,\dots, A_m}{Q}

    Note that the premises and arguments are arbitrary. It's expected that :math:\texttt{id} refer to a proof rule in the external Alethe calculus, and that :math:Q' be the representation of Q to be printed by the Alethe printer. \endverbatim

  • UNKNOWN : ProofRule
Instances For

    \verbatim embed:rst:leading-asterisk This enumeration represents the rewrite rules used in a rewrite proof. Some of the rules are internal ad-hoc rewrites, while others are rewrites specified by the RARE DSL. This enumeration is used as the first argument to the :cpp:enumerator:DSL_REWRITE <cvc5::ProofRule::DSL_REWRITE> proof rule and the :cpp:enumerator:THEORY_REWRITE <cvc5::ProofRule::THEORY_REWRITE> proof rule. \endverbatim

    • NONE : ProofRewriteRule
    • DISTINCT_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Builtin -- Distinct elimination

      .. math:: \texttt{distinct}(t_1, t_2) = \neg (t_1 = t2)

      if :math:n = 2, or

      .. math:: \texttt{distinct}(t_1, \ldots, tn) = \bigwedge_{i=1}^n \bigwedge_{j=i+1}^n t_i \neq t_j

      if :math:n > 2

      \endverbatim

    • DISTINCT_CARD_CONFLICT : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Builtin -- Distinct cardinality conflict

      .. math:: \texttt{distinct}(t_1, \ldots, tn) = \bot

      where :math:n is greater than the cardinality of the type of :math:t_1, \ldots, t_n.

      \endverbatim

    • UBV_TO_INT_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk UF -- Bitvector to natural elimination

      .. math:: \texttt{ubv_to_int}(t) = t_1 + \ldots + t_n

      where for :math:i=1, \ldots, n, :math:t_i is :math:\texttt{ite}(x[i-1, i-1] = 1, 2^i, 0).

      \endverbatim

    • INT_TO_BV_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk UF -- Integer to bitvector elimination

      .. math:: \texttt{int2bv}_n(t) = (bvconcat t_1 \ldots t_n)

      where for :math:i=1, \ldots, n, :math:t_i is :math:\texttt{ite}(\texttt{mod}(t,2^n) \geq 2^{n-1}, 1, 0).

      \endverbatim

    • MACRO_BOOL_NNF_NORM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Booleans -- Negation Normal Form with normalization

      .. math:: F = G

      where :math:G is the result of applying negation normal form to :math:F with additional normalizations, see TheoryBoolRewriter::computeNnfNorm.

      \endverbatim

    • MACRO_BOOL_BV_INVERT_SOLVE : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Booleans -- Bitvector invert solve

      .. math:: ((t_1 = t_2) = (x = r)) = \top

      where :math:x occurs on an invertible path in :math:t_1 = t_2 and has solved form :math:r.

      \endverbatim

    • MACRO_ARITH_INT_EQ_CONFLICT : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Arithmetic -- Integer equality conflict

      .. math:: (t=s) = \bot

      where :math:t=s is equivalent (via :cpp:enumerator:ARITH_POLY_NORM <cvc5::ProofRule::ARITH_POLY_NORM>) to :math:(r = c) where :math:r is an integral term and :math:c is a non-integral constant.

      \endverbatim

    • MACRO_ARITH_INT_GEQ_TIGHTEN : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Arithmetic -- Integer inequality tightening

      .. math:: (t \geq s) = ( r \geq \lceil c \rceil)

      or

      .. math:: (t \geq s) = \neg( r \geq \lceil c \rceil)

      where :math:t \geq s is equivalent (via :cpp:enumerator:ARITH_POLY_NORM <cvc5::ProofRule::ARITH_POLY_NORM>) to the right hand side where :math:r is an integral term and :math:c is a non-integral constant. Note that we end up with a negation if the leading coefficient in :math:t is negative.

      \endverbatim

    • MACRO_ARITH_STRING_PRED_ENTAIL : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Arithmetic -- strings predicate entailment

      .. math:: (= s t) = c

      .. math:: (>= s t) = c

      where :math:c is a Boolean constant. This macro is elaborated by applications of :cpp:enumerator:EVALUATE <cvc5::ProofRule::EVALUATE>, :cpp:enumerator:ARITH_POLY_NORM <cvc5::ProofRule::ARITH_POLY_NORM>, :cpp:enumerator:ARITH_STRING_PRED_ENTAIL <cvc5::ProofRewriteRule::ARITH_STRING_PRED_ENTAIL>, :cpp:enumerator:ARITH_STRING_PRED_SAFE_APPROX <cvc5::ProofRewriteRule::ARITH_STRING_PRED_SAFE_APPROX>, as well as other rewrites for normalizing arithmetic predicates.

      \endverbatim

    • ARITH_STRING_PRED_ENTAIL : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Arithmetic -- strings predicate entailment

      .. math:: (>= n 0) = true

      Where :math:n can be shown to be greater than or equal to :math:0 by reasoning about string length being positive and basic properties of addition and multiplication.

      \endverbatim

    • ARITH_STRING_PRED_SAFE_APPROX : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Arithmetic -- strings predicate entailment

      .. math:: (>= n 0) = (>= m 0)

      Where :math:m is a safe under-approximation of :math:n, namely we have that :math:(>= n m) and :math:(>= m 0).

      In detail, subterms of :math:n may be replaced with other terms to obtain :math:m based on the reasoning described in the paper Reynolds et al, CAV 2019, "High-Level Abstractions for Simplifying Extended String Constraints in SMT".

      \endverbatim

    • ARITH_POW_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Arithmetic -- power elimination

      .. math:: (x ^ c) = (x \cdot \ldots \cdot x)

      where :math:c is a non-negative integer.

      \endverbatim

    • BETA_REDUCE : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Equality -- Beta reduction

      .. math:: ((\lambda x_1 \ldots x_n.> t) \ t_1 \ldots t_n) = t{x_1 \mapsto t_1, \ldots, x_n \mapsto t_n}

      or alternatively

      .. math:: ((\lambda x_1 \ldots x_n.> t) \ t_1) = (\lambda x_2 \ldots x_n.> t){x_1 \mapsto t_1}

      In the former case, the left hand side may either be a term of kind cvc5::Kind::APPLY_UF or cvc5::Kind::HO_APPLY. The latter case is used only if the term has kind cvc5::Kind::HO_APPLY.

      In either case, the right hand side of the equality in the conclusion is computed using standard substitution via Node::substitute.

      \endverbatim

    • LAMBDA_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Equality -- Lambda elimination

      .. math:: (\lambda x_1 \ldots x_n.> f(x_1 \ldots x_n)) = f

      \endverbatim

    • MACRO_LAMBDA_CAPTURE_AVOID : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Equality -- Macro lambda application capture avoid

      .. math:: ((\lambda x_1 \ldots x_n.> t) \ t_1 \ldots t_n) = ((\lambda y_1 \ldots y_n.> t') \ t_1 \ldots t_n)

      The terms may either be of kind cvc5::Kind::APPLY_UF or cvc5::Kind::HO_APPLY. This rule ensures that the free variables of :math:y_1, \ldots, y_n, t_1 \ldots t_n do not occur in binders within :math:t', and :math:(\lambda x_1 \ldots x_n.\> t) is alpha-equivalent to :math:(\lambda y_1 \ldots y_n.\> t'). This rule is applied prior to beta reduction to ensure there is no variable capturing.

      \endverbatim

    • ARRAYS_SELECT_CONST : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Arrays -- Constant array select

      .. math:: (select A x) = c

      where :math:A is a constant array storing element :math:c.

      \endverbatim

    • MACRO_ARRAYS_NORMALIZE_OP : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Arrays -- Macro normalize operation

      .. math:: A = B

      where :math:B is the result of normalizing the array operation :math:A into a canonical form, based on commutativity of disjoint indices.

      \endverbatim

    • MACRO_ARRAYS_NORMALIZE_CONSTANT : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Arrays -- Macro normalize constant

      .. math:: A = B

      where :math:B is the result of normalizing the array value :math:A into a canonical form, using the internal method TheoryArraysRewriter::normalizeConstant.

      \endverbatim

    • ARRAYS_EQ_RANGE_EXPAND : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Arrays -- Expansion of array range equality

      .. math:: \mathit{eqrange}(a,b,i,j)= \forall x.> i \leq x \leq j \rightarrow \mathit{select}(a,x)=\mathit{select}(b,x) \endverbatim

    • EXISTS_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Exists elimination

      .. math:: \exists x_1\dots x_n.> F = \neg \forall x_1\dots x_n.> \neg F

      \endverbatim

    • QUANT_UNUSED_VARS : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Unused variables

      .. math:: \forall X.> F = \forall X_1.> F

      where :math:X_1 is the subset of :math:X that appear free in :math:F and :math:X_1 does not contain duplicate variables.

      \endverbatim

    • MACRO_QUANT_MERGE_PRENEX : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Macro merge prenex

      .. math:: \forall X_1.> \ldots \forall X_n.> F = \forall X.> F

      where :math:X_1 \ldots X_n are lists of variables and :math:X is the result of removing duplicates from :math:X_1 \ldots X_n.

      \endverbatim

    • QUANT_MERGE_PRENEX : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Merge prenex

      .. math:: \forall X_1.> \ldots \forall X_n.> F = \forall X_1 \ldots X_n.> F

      where :math:X_1 \ldots X_n are lists of variables.

      \endverbatim

    • MACRO_QUANT_PRENEX : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Macro prenex

      .. math:: (\forall X.> F_1 \vee \cdots \vee (\forall Y.> F_i) \vee \cdots \vee F_n) = (\forall X Z.> F_1 \vee \cdots \vee F_i{ Y \mapsto Z } \vee \cdots \vee F_n)

      \endverbatim

    • MACRO_QUANT_MINISCOPE : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Macro miniscoping

      .. math:: \forall X.> F_1 \wedge \cdots \wedge F_n = G_1 \wedge \cdots \wedge G_n

      where each :math:G_i is semantically equivalent to :math:\forall X.\> F_i, or alternatively

      .. math:: \forall X.> \ite{C}{F_1}{F_2} = \ite{C}{G_1}{G_2}

      where :math:C does not have any free variable in :math:X.

      \endverbatim

    • QUANT_MINISCOPE_AND : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Miniscoping and

      .. math:: \forall X.> F_1 \wedge \ldots \wedge F_n = (\forall X.> F_1) \wedge \ldots \wedge (\forall X.> F_n)

      \endverbatim

    • QUANT_MINISCOPE_OR : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Miniscoping or

      .. math:: \forall X.> F_1 \vee \ldots \vee F_n = (\forall X_1.> F_1) \vee \ldots \vee (\forall X_n.> F_n)

      where :math:X = X_1 \ldots X_n, and the right hand side does not have any free variable in :math:X.

      \endverbatim

    • QUANT_MINISCOPE_ITE : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Miniscoping ite

      .. math:: \forall X.> \ite{C}{F_1}{F_2} = \ite{C}{\forall X.> F_1}{\forall X.> F_2}

      where :math:C does not have any free variable in :math:X.

      \endverbatim

    • QUANT_DT_SPLIT : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Datatypes Split

      .. math:: (\forall x Y.> F) = (\forall X_1 Y. F_1) \vee \cdots \vee (\forall X_n Y. F_n)

      where :math:x is of a datatype type with constructors :math:C_1, \ldots, C_n, where for each :math:i = 1, \ldots, n, :math:F_i is :math:F \{ x \mapsto C_i(X_i) \}.

      \endverbatim

    • MACRO_QUANT_DT_VAR_EXPAND : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk **Quantifiers -- Macro datatype variable expand **

      .. math:: (\forall Y x Z.> F) = (\forall Y X_1 Z. F_1) \vee \cdots \vee (\forall Y X_n Z. F_n)

      where :math:x is of a datatype type with constructors :math:C_1, \ldots, C_n, where for each :math:i = 1, \ldots, n, :math:F_i is :math:F \{ x \mapsto C_i(X_i) \}, and :math:F entails :math:\mathit{is}_c(x) for some :math:c.

      \endverbatim

    • MACRO_QUANT_PARTITION_CONNECTED_FV : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Macro connected free variable partitioning

      .. math:: \forall X.> F_1 \vee \ldots \vee F_n = (\forall X_1.> F_{1,1} \vee \ldots \vee F_{1,k_1}) \vee \ldots \vee (\forall X_m.> F_{m,1} \vee \ldots \vee F_{m,k_m})

      where :math:X_1, \ldots, X_m is a partition of :math:X. This is determined by computing the connected components when considering two variables in :math:X to be connected if they occur in the same :math:F_i. \endverbatim

    • MACRO_QUANT_VAR_ELIM_EQ : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Macro variable elimination equality

      .. math:: \forall x Y.> F = \forall Y.> F { x \mapsto t }

      where :math:\neg F entails :math:x = t.

      \endverbatim

    • QUANT_VAR_ELIM_EQ : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Macro variable elimination equality

      .. math:: (\forall x.> x \neq t \vee F) = F { x \mapsto t }

      or alternatively

      .. math:: (\forall x.> x \neq t) = \bot

      \endverbatim

    • MACRO_QUANT_VAR_ELIM_INEQ : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Macro variable elimination inequality

      .. math:: \forall x Y.> F = \forall Y.> G

      where :math:F is a disjunction and where :math:G is the result of dropping all literals containing :math:x. This is applied only when all such literals are lower (resp. upper) bounds for integer or real variable :math:x. Note that :math:G may be false, and :math:Y may be empty in which case it is omitted.

      \endverbatim

    • MACRO_QUANT_REWRITE_BODY : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Quantifiers -- Macro quantifiers rewrite body

      .. math:: \forall X.> F = \forall X.> G

      where :math:G is semantically equivalent to :math:F.

      \endverbatim

    • DT_INST : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Datatypes -- Instantiation

      .. math:: \mathit{is}_C(t) = (t = C(\mathit{sel}_1(t),\dots,\mathit{sel}_n(t)))

      where :math:C is the :math:n^{\mathit{th}} constructor of the type of :math:t, and :math:\mathit{is}_C is the discriminator (tester) for :math:C. \endverbatim

    • DT_COLLAPSE_SELECTOR : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Datatypes -- collapse selector

      .. math:: s_i(c(t_1, \ldots, t_n)) = t_i

      where :math:s_i is the :math:i^{th} selector for constructor :math:c.

      \endverbatim

    • DT_COLLAPSE_TESTER : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Datatypes -- collapse tester

      .. math:: \mathit{is}_c(c(t_1, \ldots, t_n)) = true

      or alternatively

      .. math:: \mathit{is}_c(d(t_1, \ldots, t_n)) = false

      where :math:c and :math:d are distinct constructors.

      \endverbatim

    • DT_COLLAPSE_TESTER_SINGLETON : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Datatypes -- collapse tester

      .. math:: \mathit{is}_c(t) = true

      where :math:c is the only constructor of its associated datatype.

      \endverbatim

    • MACRO_DT_CONS_EQ : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Datatypes -- Macro constructor equality

      .. math:: (t = s) = (t_1 = s_1 \wedge \ldots \wedge t_n = s_n)

      where :math:t_1, \ldots, t_n and :math:s_1, \ldots, s_n are subterms of :math:t and :math:s that occur at the same position respectively (beneath constructor applications), or alternatively

      .. math:: (t = s) = false

      where :math:t and :math:s have subterms that occur in the same position (beneath constructor applications) that are distinct.

      \endverbatim

    • DT_CONS_EQ : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Datatypes -- constructor equality

      .. math:: (c(t_1, \ldots, t_n) = c(s_1, \ldots, s_n)) = (t_1 = s_1 \wedge \ldots \wedge t_n = s_n)

      where :math:c is a constructor.

      \endverbatim

    • DT_CONS_EQ_CLASH : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Datatypes -- constructor equality clash

      .. math:: (t = s) = false

      where :math:t and :math:s have subterms that occur in the same position (beneath constructor applications) that are distinct constructor applications.

      \endverbatim

    • DT_CYCLE : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Datatypes -- cycle

      .. math:: (x = t[x]) = \bot

      where all terms on the path to :math:x in :math:t[x] are applications of constructors, and this path is non-empty.

      \endverbatim

    • DT_COLLAPSE_UPDATER : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Datatypes -- collapse tester

      .. math:: u_{c,i}(c(t_1, \ldots, t_i, \ldots, t_n), s) = c(t_1, \ldots, s, \ldots, t_n)

      or alternatively

      .. math:: u_{c,i}(d(t_1, \ldots, t_n), s) = d(t_1, \ldots, t_n)

      where :math:c and :math:d are distinct constructors.

      \endverbatim

    • DT_UPDATER_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Datatypes - updater elimination

      .. math:: u_{c,i}(t, s) = ite(\mathit{is}_c(t), c(s_0(t), \ldots, s, \ldots s_n(t)), t)

      where :math:s_i is the :math:i^{th} selector for constructor :math:c.

      \endverbatim

    • DT_MATCH_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Datatypes -- match elimination

      .. math:: \texttt{match}(t ((p_1 c_1) \ldots (p_n c_n))) = \texttt{ite}(F_1, r_1, \texttt{ite}( \ldots, r_n))

      where for :math:i=1, \ldots, n, :math:F_1 is a formula that holds iff :math:t matches :math:p_i and :math:r_i is the result of a substitution on :math:c_i based on this match.

      \endverbatim

    • MACRO_BV_EXTRACT_CONCAT : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk **Bitvectors -- Macro extract and concat **

      .. math:: a = b

      where :math:a is rewritten to :math:b by the internal rewrite rule ExtractConcat.

      \endverbatim

    • MACRO_BV_OR_SIMPLIFY : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk **Bitvectors -- Macro or simplify **

      .. math:: a = b

      where :math:a is rewritten to :math:b by the internal rewrite rule OrSimplify.

      \endverbatim

    • MACRO_BV_AND_SIMPLIFY : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk **Bitvectors -- Macro and simplify **

      .. math:: a = b

      where :math:a is rewritten to :math:b by the internal rewrite rule AndSimplify.

      \endverbatim

    • MACRO_BV_XOR_SIMPLIFY : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk **Bitvectors -- Macro xor simplify **

      .. math:: a = b

      where :math:a is rewritten to :math:b by the internal rewrite rule XorSimplify.

      \endverbatim

    • MACRO_BV_AND_OR_XOR_CONCAT_PULLUP : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk **Bitvectors -- Macro and/or/xor concat pullup **

      .. math:: a = b

      where :math:a is rewritten to :math:b by the internal rewrite rule AndOrXorConcatPullup.

      \endverbatim

    • MACRO_BV_MULT_SLT_MULT : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk **Bitvectors -- Macro multiply signed less than multiply **

      .. math:: a = b

      where :math:a is rewritten to :math:b by the internal rewrite rule MultSltMult.

      \endverbatim

    • MACRO_BV_CONCAT_EXTRACT_MERGE : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk **Bitvectors -- Macro concat extract merge **

      .. math:: a = b

      where :math:a is rewritten to :math:b by the internal rewrite rule ConcatExtractMerge.

      \endverbatim

    • MACRO_BV_CONCAT_CONSTANT_MERGE : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk **Bitvectors -- Macro concat constant merge **

      .. math:: a = b

      where :math:a is rewritten to :math:b by the internal rewrite rule ConcatConstantMerge.

      \endverbatim

    • MACRO_BV_EQ_SOLVE : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Bitvectors -- Macro equality solve

      .. math:: (a = b) = \bot

      where :math:bvsub(a,b) normalizes to a non-zero constant, or alternatively

      .. math:: (a = b) = \top

      where :math:bvsub(a,b) normalizes to zero.

      \endverbatim

    • BV_UMULO_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Bitvectors -- Unsigned multiplication overflow detection elimination

      .. math:: \texttt{bvumulo}(x,y) = t

      where :math:t is the result of eliminating the application of :math:\texttt{bvumulo}.

      See M.Gok, M.J. Schulte, P.I. Balzola, "Efficient integer multiplication overflow detection circuits", 2001. http://ieeexplore.ieee.org/document/987767 \endverbatim

    • BV_SMULO_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Bitvectors -- Unsigned multiplication overflow detection elimination

      .. math:: \texttt{bvsmulo}(x,y) = t

      where :math:t is the result of eliminating the application of :math:\texttt{bvsmulo}.

      See M.Gok, M.J. Schulte, P.I. Balzola, "Efficient integer multiplication overflow detection circuits", 2001. http://ieeexplore.ieee.org/document/987767 \endverbatim

    • BV_BITWISE_SLICING : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Bitvectors -- Extract continuous substrings of bitvectors

      .. math:: bvand(a,\ c) = concat(bvand(a[i_0:j_0],\ c_0) ... bvand(a[i_n:j_n],\ c_n))

      where c0,..., cn are maximally continuous substrings of 0 or 1 in the constant c \endverbatim

    • BV_REPEAT_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Bitvectors -- Extract continuous substrings of bitvectors

      .. math:: repeat(n,\ t) = concat(t ... t)

      where :math:t is repeated :math:n times. \endverbatim

    • STR_CTN_MULTISET_SUBSET : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- String contains multiset subset

      .. math:: \mathit{str}.contains(s,t) = \bot

      where the multiset overapproximation of :math:s can be shown to not contain the multiset abstraction of :math:t based on the reasoning described in the paper Reynolds et al, CAV 2019, "High-Level Abstractions for Simplifying Extended String Constraints in SMT". \endverbatim

    • MACRO_STR_EQ_LEN_UNIFY_PREFIX : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- String equality length unify prefix

      .. math:: (s = \mathit{str}.\text{++}(t_1, \ldots, t_n)) = (s = \mathit{str}.\text{++}(t_1, \ldots t_i)) \wedge t_{i+1} = \epsilon \wedge \ldots \wedge t_n = \epsilon

      where we can show :math:s has a length that is at least the length of :math:\text{++}(t_1, \ldots t_i). \endverbatim

    • MACRO_STR_EQ_LEN_UNIFY : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- String equality length unify

      .. math:: (\mathit{str}.\text{++}(s_1, \ldots, s_n) = \mathit{str}.\text{++}(t_1, \ldots, t_m)) = (r_1 = u_1 \wedge \ldots r_k = u_k)

      where for each :math:i = 1, \ldots, k, we can show the length of :math:r_i and :math:u_i are equal, :math:s_1, \ldots, s_n is :math:r_1, \ldots, r_k, and :math:t_1, \ldots, t_m is :math:u_1, \ldots, u_k. \endverbatim

    • MACRO_STR_SPLIT_CTN : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- Macro string split contains

      .. math:: \mathit{str.contains}(t, s) = \mathit{str.contains}(t_1, s) \vee \mathit{str.contains}(t_2, s)

      where :math:t_1 and :math:t_2 are substrings of :math:t. This rule is elaborated using :cpp:enumerator:STR_OVERLAP_SPLIT_CTN <cvc5::ProofRewriteRule::STR_OVERLAP_SPLIT_CTN>.

      \endverbatim

    • MACRO_STR_STRIP_ENDPOINTS : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- Macro string strip endpoints

      One of the following forms:

      .. math:: \mathit{str.contains}(t, s) = \mathit{str.contains}(t_2, s)

      .. math:: \mathit{str.indexof}(t, s, n) = \mathit{str.indexof}(t_2, s, n)

      .. math:: \mathit{str.replace}(t, s, r) = \mathit{str.++}(t_1, \mathit{str.replace}(t_2, s, r) t_3)

      where in each case we reason about removing portions of :math:t that are irrelevant to the evaluation of the term. This rule is elaborated using :cpp:enumerator:STR_OVERLAP_ENDPOINTS_CTN <cvc5::ProofRewriteRule::STR_OVERLAP_ENDPOINTS_CTN>, :cpp:enumerator:STR_OVERLAP_ENDPOINTS_INDEXOF <cvc5::ProofRewriteRule::STR_OVERLAP_ENDPOINTS_INDEXOF> and :cpp:enumerator:STR_OVERLAP_ENDPOINTS_REPLACE <cvc5::ProofRewriteRule::STR_OVERLAP_ENDPOINTS_REPLACE>.

      \endverbatim

    • STR_OVERLAP_SPLIT_CTN : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- Strings overlap split contains

      .. math:: \mathit{str.contains}(\mathit{str.++}(t_1, t_2, t_3), s) = \mathit{str.contains}(t_1, s) \vee \mathit{str.contains}(t_3, s)

      :math:t_2 has no forward overlap with :math:s and :math:s has no forward overlap with :math:t_2. For details see :math:\texttt{Word::hasOverlap} in :cvc5src:theory/strings/word.h. \endverbatim

    • STR_OVERLAP_ENDPOINTS_CTN : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- Strings overlap endpoints contains

      .. math:: \mathit{str.contains}(\mathit{str.++}(t_1, t_2, t_3), s) = \mathit{str.contains}(t_2, s)

      where :math:s is :math:\mathit{str.++}(s_1, s_2, s_3), :math:t_1 has no forward overlap with :math:s_1 and :math:t_3 has no reverse overlap with :math:s_3. For details see :math:\texttt{Word::hasOverlap} in :cvc5src:theory/strings/word.h.

      \endverbatim

    • STR_OVERLAP_ENDPOINTS_INDEXOF : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- Strings overlap endpoints indexof

      .. math:: \mathit{str.indexof}(\mathit{str.++}(t_1, t_2), s, n) = \mathit{str.indexof}(t_1, s, n)

      where :math:s is :math:\mathit{str.++}(s_1, s_2) and :math:t_2 has no reverse overlap with :math:s_2. For details see :math:\texttt{Word::hasOverlap} in :cvc5src:theory/strings/word.h. \endverbatim

    • STR_OVERLAP_ENDPOINTS_REPLACE : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- Strings overlap endpoints replace

      .. math:: \mathit{str.replace}(\mathit{str.++}(t_1, t_2, t_3), s, r) = \mathit{str.++}(t_1, \mathit{str.replace}(t_2, s, r) t_3)

      where :math:s is :math:\mathit{str.++}(s_1, s_2, s_3), :math:t_1 has no forward overlap with :math:s_1 and :math:t_3 has no reverse overlap with :math:s_3. For details see :math:\texttt{Word::hasOverlap} in :cvc5src:theory/strings/word.h.

      \endverbatim

    • MACRO_STR_COMPONENT_CTN : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- Macro string component contains

      .. math:: \mathit{str.contains}(t, s) = \top

      where a substring of :math:t can be inferred to be a superstring of :math:s based on iterating on components of string concatenation terms as well as prefix and suffix reasoning.

      \endverbatim

    • MACRO_STR_CONST_NCTN_CONCAT : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- Macro string constant no contains concatenation

      .. math:: \mathit{str.contains}(c, \mathit{str.++}(t_1, \ldots, t_n)) = \bot

      where :math:c is not contained in :math:R_t, where the regular expression :math:R_t overapproximates the possible values of :math:\mathit{str.++}(t_1, \ldots, t_n).

      \endverbatim

    • MACRO_STR_IN_RE_INCLUSION : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- Macro string in regular expression inclusion

      .. math:: \mathit{str.in_re}(s, R) = \top

      where :math:R includes the regular expression :math:R_s which overapproximates the possible values of string :math:s.

      \endverbatim

    • MACRO_RE_INTER_UNION_CONST_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- Macro regular expression intersection/union constant elimination

      One of the following forms:

      .. math:: \mathit{re.union}(R) = \mathit{re.union}(R')

      where :math:R is a list of regular expressions containing :math:R_i and :math:\mathit{str.to_re(c)} where :math:c is a string in :math:R_i and :math:R' is the result of removing :math:\mathit{str.to_re(c)} from :math:R.

      .. math:: \mathit{re.inter}(R) = \mathit{re.inter}(R')

      where :math:R is a list of regular expressions containing :math:R_i and :math:\mathit{str.to_re(c)} where :math:c is a string in :math:R_i and :math:R' is the result of removing :math:R_i from :math:R.

      .. math:: \mathit{re.inter}(R) = \mathit{re.none}

      where :math:R is a list of regular expressions containing :math:R_i and :math:\mathit{str.to_re(c)} where :math:c is a string not in :math:R_i.

      \endverbatim

    • SEQ_EVAL_OP : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- Sequence evaluate operator

      .. math:: f(s_1, \ldots, s_n) = t

      where :math:f is an operator over sequences and :math:s_1, \ldots, s_n are values, that is, the Node::isConst method returns true for each, and :math:t is the result of evaluating :math:f on them. \endverbatim

    • STR_INDEXOF_RE_EVAL : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- string indexof regex evaluation

      .. math:: str.indexof_re(s,r,n) = m

      where :math:s is a string values, :math:n is an integer value, :math:r is a ground regular expression and :math:m is the result of evaluating the left hand side.

      \endverbatim

    • STR_REPLACE_RE_EVAL : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- string replace regex evaluation

      .. math:: str.replace_re(s,r,t) = u

      where :math:s,t are string values, :math:r is a ground regular expression and :math:u is the result of evaluating the left hand side.

      \endverbatim

    • STR_REPLACE_RE_ALL_EVAL : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- string replace regex all evaluation

      .. math:: str.replace_re_all(s,r,t) = u

      where :math:s,t are string values, :math:r is a ground regular expression and :math:u is the result of evaluating the left hand side.

      \endverbatim

    • RE_LOOP_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- regular expression loop elimination

      .. math:: re.loop_{l,u}(R) = re.union(R^l, \ldots, R^u)

      where :math:u \geq l.

      \endverbatim

    • MACRO_RE_INTER_UNION_INCLUSION : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- regular expression intersection/union inclusion

      .. math:: \mathit{re.inter}(R) = \mathit{re.inter}(\mathit{re.none}, R_0)

      where :math:R is a list of regular expressions containing r_1, re.comp(r_2) and the list :math:R_0 where r_2 is a superset of r_1.

      or alternatively:

      .. math:: \mathit{re.union}(R) = \mathit{re.union}(\mathit{re}.\text{*}(\mathit{re.allchar}),\ R_0)

      where :math:R is a list of regular expressions containing r_1, re.comp(r_2) and the list :math:R_0, where r_1 is a superset of r_2.

      \endverbatim

    • RE_INTER_INCLUSION : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- regular expression intersection inclusion

      .. math:: \mathit{re.inter}(r_1, re.comp(r_2)) = \mathit{re.none}

      where :math:r_2 is a superset of :math:r_1.

      \endverbatim

    • RE_UNION_INCLUSION : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- regular expression union inclusion

      .. math:: \mathit{re.union}(r_1, re.comp(r_2)) = \mathit{re}.\text{*}(\mathit{re.allchar})

      where :math:r_1 is a superset of :math:r_2.

      \endverbatim

    • STR_IN_RE_EVAL : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- regular expression membership evaluation

      .. math:: \mathit{str.in_re}(s, R) = c

      where :math:s is a constant string, :math:R is a constant regular expression and :math:c is true or false.

      \endverbatim

    • STR_IN_RE_CONSUME : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- regular expression membership consume

      .. math:: \mathit{str.in_re}(s, R) = b

      where :math:b is either :math:false or the result of stripping entailed prefixes and suffixes off of :math:s and :math:R.

      \endverbatim

    • STR_IN_RE_CONCAT_STAR_CHAR : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- string in regular expression concatenation star character

      .. math:: \mathit{str.in_re}(\mathit{str}.\text{++}(s_1, \ldots, s_n), \mathit{re}.\text{}(R)) =\ \mathit{str.in_re}(s_1, \mathit{re}.\text{}(R)) \wedge \ldots \wedge \mathit{str.in_re}(s_n, \mathit{re}.\text{*}(R))

      where all strings in :math:R have length one.

      \endverbatim

    • STR_IN_RE_SIGMA : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- string in regular expression sigma

      .. math:: \mathit{str.in_re}(s, \mathit{re}.\text{++}(\mathit{re.allchar}, \ldots, \mathit{re.allchar})) = (\mathit{str.len}(s) = n)

      or alternatively:

      .. math:: \mathit{str.in_re}(s, \mathit{re}.\text{++}(\mathit{re.allchar}, \ldots, \mathit{re.allchar}, \mathit{re}.\text{*}(\mathit{re.allchar}))) = (\mathit{str.len}(s) \ge n)

      \endverbatim

    • STR_IN_RE_SIGMA_STAR : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- string in regular expression sigma star

      .. math:: \mathit{str.in_re}(s, \mathit{re}.\text{*}(\mathit{re}.\text{++}(\mathit{re.allchar}, \ldots, \mathit{re.allchar}))) = (\mathit{str.len}(s) \ % \ n = 0)

      where :math:n is the number of :math:\mathit{re.allchar} arguments to :math:\mathit{re}.\text{++}.

      \endverbatim

    • MACRO_SUBSTR_STRIP_SYM_LENGTH : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Strings -- strings substring strip symbolic length

      .. math:: str.substr(s, n, m) = t

      where :math:t is obtained by fully or partially stripping components of :math:s based on :math:n and :math:m.

      \endverbatim

    • SETS_EVAL_OP : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Sets -- sets evaluate operator

      .. math:: \mathit{f}(t_1, t_2) = t

      where :math:f is one of :math:\mathit{set.inter}, \mathit{set.minus}, \mathit{set.union}, and :math:t is the result of evaluating :math:f on :math:t_1 and :math:t_2.

      Note we use this rule only when :math:t_1 and :math:t_2 are set values, that is, the Node::isConst method returns true for both.

      \endverbatim

    • SETS_INSERT_ELIM : ProofRewriteRule

      \verbatim embed:rst:leading-asterisk Sets -- sets insert elimination

      .. math:: \mathit{set.insert}(t_1, \ldots, t_n, S) = \texttt{set.union}(\texttt{sets.singleton}(t_1), \ldots, \texttt{sets.singleton}(t_n), S)

      \endverbatim

    • ARITH_DIV_TOTAL_ZERO_REAL : ProofRewriteRule

      Auto-generated from RARE rule arith-div-total-zero-real

    • ARITH_DIV_TOTAL_ZERO_INT : ProofRewriteRule

      Auto-generated from RARE rule arith-div-total-zero-int

    • ARITH_INT_DIV_TOTAL : ProofRewriteRule

      Auto-generated from RARE rule arith-int-div-total

    • ARITH_INT_DIV_TOTAL_ONE : ProofRewriteRule

      Auto-generated from RARE rule arith-int-div-total-one

    • ARITH_INT_DIV_TOTAL_ZERO : ProofRewriteRule

      Auto-generated from RARE rule arith-int-div-total-zero

    • ARITH_INT_DIV_TOTAL_NEG : ProofRewriteRule

      Auto-generated from RARE rule arith-int-div-total-neg

    • ARITH_INT_MOD_TOTAL : ProofRewriteRule

      Auto-generated from RARE rule arith-int-mod-total

    • ARITH_INT_MOD_TOTAL_ONE : ProofRewriteRule

      Auto-generated from RARE rule arith-int-mod-total-one

    • ARITH_INT_MOD_TOTAL_ZERO : ProofRewriteRule

      Auto-generated from RARE rule arith-int-mod-total-zero

    • ARITH_INT_MOD_TOTAL_NEG : ProofRewriteRule

      Auto-generated from RARE rule arith-int-mod-total-neg

    • ARITH_ELIM_GT : ProofRewriteRule

      Auto-generated from RARE rule arith-elim-gt

    • ARITH_ELIM_LT : ProofRewriteRule

      Auto-generated from RARE rule arith-elim-lt

    • ARITH_ELIM_INT_GT : ProofRewriteRule

      Auto-generated from RARE rule arith-elim-int-gt

    • ARITH_ELIM_INT_LT : ProofRewriteRule

      Auto-generated from RARE rule arith-elim-int-lt

    • ARITH_ELIM_LEQ : ProofRewriteRule

      Auto-generated from RARE rule arith-elim-leq

    • ARITH_LEQ_NORM : ProofRewriteRule

      Auto-generated from RARE rule arith-leq-norm

    • ARITH_GEQ_TIGHTEN : ProofRewriteRule

      Auto-generated from RARE rule arith-geq-tighten

    • ARITH_GEQ_NORM1_INT : ProofRewriteRule

      Auto-generated from RARE rule arith-geq-norm1-int

    • ARITH_GEQ_NORM1_REAL : ProofRewriteRule

      Auto-generated from RARE rule arith-geq-norm1-real

    • ARITH_EQ_ELIM_REAL : ProofRewriteRule

      Auto-generated from RARE rule arith-eq-elim-real

    • ARITH_EQ_ELIM_INT : ProofRewriteRule

      Auto-generated from RARE rule arith-eq-elim-int

    • ARITH_TO_INT_ELIM : ProofRewriteRule

      Auto-generated from RARE rule arith-to-int-elim

    • ARITH_TO_INT_ELIM_TO_REAL : ProofRewriteRule

      Auto-generated from RARE rule arith-to-int-elim-to-real

    • ARITH_DIV_ELIM_TO_REAL1 : ProofRewriteRule

      Auto-generated from RARE rule arith-div-elim-to-real1

    • ARITH_DIV_ELIM_TO_REAL2 : ProofRewriteRule

      Auto-generated from RARE rule arith-div-elim-to-real2

    • ARITH_MOD_OVER_MOD : ProofRewriteRule

      Auto-generated from RARE rule arith-mod-over-mod

    • ARITH_INT_EQ_CONFLICT : ProofRewriteRule

      Auto-generated from RARE rule arith-int-eq-conflict

    • ARITH_INT_GEQ_TIGHTEN : ProofRewriteRule

      Auto-generated from RARE rule arith-int-geq-tighten

    • ARITH_DIVISIBLE_ELIM : ProofRewriteRule

      Auto-generated from RARE rule arith-divisible-elim

    • ARITH_ABS_EQ : ProofRewriteRule

      Auto-generated from RARE rule arith-abs-eq

    • ARITH_ABS_INT_GT : ProofRewriteRule

      Auto-generated from RARE rule arith-abs-int-gt

    • ARITH_ABS_REAL_GT : ProofRewriteRule

      Auto-generated from RARE rule arith-abs-real-gt

    • ARITH_GEQ_ITE_LIFT : ProofRewriteRule

      Auto-generated from RARE rule arith-geq-ite-lift

    • ARITH_LEQ_ITE_LIFT : ProofRewriteRule

      Auto-generated from RARE rule arith-leq-ite-lift

    • ARITH_MIN_LT1 : ProofRewriteRule

      Auto-generated from RARE rule arith-min-lt1

    • ARITH_MIN_LT2 : ProofRewriteRule

      Auto-generated from RARE rule arith-min-lt2

    • ARITH_MAX_GEQ1 : ProofRewriteRule

      Auto-generated from RARE rule arith-max-geq1

    • ARITH_MAX_GEQ2 : ProofRewriteRule

      Auto-generated from RARE rule arith-max-geq2

    • ARRAY_READ_OVER_WRITE : ProofRewriteRule

      Auto-generated from RARE rule array-read-over-write

    • ARRAY_READ_OVER_WRITE2 : ProofRewriteRule

      Auto-generated from RARE rule array-read-over-write2

    • ARRAY_STORE_OVERWRITE : ProofRewriteRule

      Auto-generated from RARE rule array-store-overwrite

    • ARRAY_STORE_SELF : ProofRewriteRule

      Auto-generated from RARE rule array-store-self

    • ARRAY_READ_OVER_WRITE_SPLIT : ProofRewriteRule

      Auto-generated from RARE rule array-read-over-write-split

    • ARRAY_STORE_SWAP : ProofRewriteRule

      Auto-generated from RARE rule array-store-swap

    • BOOL_DOUBLE_NOT_ELIM : ProofRewriteRule

      Auto-generated from RARE rule bool-double-not-elim

    • BOOL_NOT_TRUE : ProofRewriteRule

      Auto-generated from RARE rule bool-not-true

    • BOOL_NOT_FALSE : ProofRewriteRule

      Auto-generated from RARE rule bool-not-false

    • BOOL_EQ_TRUE : ProofRewriteRule

      Auto-generated from RARE rule bool-eq-true

    • BOOL_EQ_FALSE : ProofRewriteRule

      Auto-generated from RARE rule bool-eq-false

    • BOOL_EQ_NREFL : ProofRewriteRule

      Auto-generated from RARE rule bool-eq-nrefl

    • BOOL_IMPL_FALSE1 : ProofRewriteRule

      Auto-generated from RARE rule bool-impl-false1

    • BOOL_IMPL_FALSE2 : ProofRewriteRule

      Auto-generated from RARE rule bool-impl-false2

    • BOOL_IMPL_TRUE1 : ProofRewriteRule

      Auto-generated from RARE rule bool-impl-true1

    • BOOL_IMPL_TRUE2 : ProofRewriteRule

      Auto-generated from RARE rule bool-impl-true2

    • BOOL_IMPL_ELIM : ProofRewriteRule

      Auto-generated from RARE rule bool-impl-elim

    • BOOL_DUAL_IMPL_EQ : ProofRewriteRule

      Auto-generated from RARE rule bool-dual-impl-eq

    • BOOL_AND_CONF : ProofRewriteRule

      Auto-generated from RARE rule bool-and-conf

    • BOOL_AND_CONF2 : ProofRewriteRule

      Auto-generated from RARE rule bool-and-conf2

    • BOOL_OR_TAUT : ProofRewriteRule

      Auto-generated from RARE rule bool-or-taut

    • BOOL_OR_TAUT2 : ProofRewriteRule

      Auto-generated from RARE rule bool-or-taut2

    • BOOL_OR_DE_MORGAN : ProofRewriteRule

      Auto-generated from RARE rule bool-or-de-morgan

    • BOOL_IMPLIES_DE_MORGAN : ProofRewriteRule

      Auto-generated from RARE rule bool-implies-de-morgan

    • BOOL_AND_DE_MORGAN : ProofRewriteRule

      Auto-generated from RARE rule bool-and-de-morgan

    • BOOL_OR_AND_DISTRIB : ProofRewriteRule

      Auto-generated from RARE rule bool-or-and-distrib

    • BOOL_IMPLIES_OR_DISTRIB : ProofRewriteRule

      Auto-generated from RARE rule bool-implies-or-distrib

    • BOOL_XOR_REFL : ProofRewriteRule

      Auto-generated from RARE rule bool-xor-refl

    • BOOL_XOR_NREFL : ProofRewriteRule

      Auto-generated from RARE rule bool-xor-nrefl

    • BOOL_XOR_FALSE : ProofRewriteRule

      Auto-generated from RARE rule bool-xor-false

    • BOOL_XOR_TRUE : ProofRewriteRule

      Auto-generated from RARE rule bool-xor-true

    • BOOL_XOR_COMM : ProofRewriteRule

      Auto-generated from RARE rule bool-xor-comm

    • BOOL_XOR_ELIM : ProofRewriteRule

      Auto-generated from RARE rule bool-xor-elim

    • BOOL_NOT_XOR_ELIM : ProofRewriteRule

      Auto-generated from RARE rule bool-not-xor-elim

    • BOOL_NOT_EQ_ELIM1 : ProofRewriteRule

      Auto-generated from RARE rule bool-not-eq-elim1

    • BOOL_NOT_EQ_ELIM2 : ProofRewriteRule

      Auto-generated from RARE rule bool-not-eq-elim2

    • ITE_NEG_BRANCH : ProofRewriteRule

      Auto-generated from RARE rule ite-neg-branch

    • ITE_THEN_TRUE : ProofRewriteRule

      Auto-generated from RARE rule ite-then-true

    • ITE_ELSE_FALSE : ProofRewriteRule

      Auto-generated from RARE rule ite-else-false

    • ITE_THEN_FALSE : ProofRewriteRule

      Auto-generated from RARE rule ite-then-false

    • ITE_ELSE_TRUE : ProofRewriteRule

      Auto-generated from RARE rule ite-else-true

    • ITE_THEN_LOOKAHEAD_SELF : ProofRewriteRule

      Auto-generated from RARE rule ite-then-lookahead-self

    • ITE_ELSE_LOOKAHEAD_SELF : ProofRewriteRule

      Auto-generated from RARE rule ite-else-lookahead-self

    • ITE_THEN_LOOKAHEAD_NOT_SELF : ProofRewriteRule

      Auto-generated from RARE rule ite-then-lookahead-not-self

    • ITE_ELSE_LOOKAHEAD_NOT_SELF : ProofRewriteRule

      Auto-generated from RARE rule ite-else-lookahead-not-self

    • ITE_EXPAND : ProofRewriteRule

      Auto-generated from RARE rule ite-expand

    • BOOL_NOT_ITE_ELIM : ProofRewriteRule

      Auto-generated from RARE rule bool-not-ite-elim

    • ITE_TRUE_COND : ProofRewriteRule

      Auto-generated from RARE rule ite-true-cond

    • ITE_FALSE_COND : ProofRewriteRule

      Auto-generated from RARE rule ite-false-cond

    • ITE_NOT_COND : ProofRewriteRule

      Auto-generated from RARE rule ite-not-cond

    • ITE_EQ_BRANCH : ProofRewriteRule

      Auto-generated from RARE rule ite-eq-branch

    • ITE_THEN_LOOKAHEAD : ProofRewriteRule

      Auto-generated from RARE rule ite-then-lookahead

    • ITE_ELSE_LOOKAHEAD : ProofRewriteRule

      Auto-generated from RARE rule ite-else-lookahead

    • ITE_THEN_NEG_LOOKAHEAD : ProofRewriteRule

      Auto-generated from RARE rule ite-then-neg-lookahead

    • ITE_ELSE_NEG_LOOKAHEAD : ProofRewriteRule

      Auto-generated from RARE rule ite-else-neg-lookahead

    • BV_CONCAT_EXTRACT_MERGE : ProofRewriteRule

      Auto-generated from RARE rule bv-concat-extract-merge

    • BV_EXTRACT_EXTRACT : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-extract

    • BV_EXTRACT_WHOLE : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-whole

    • BV_EXTRACT_CONCAT_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-concat-1

    • BV_EXTRACT_CONCAT_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-concat-2

    • BV_EXTRACT_CONCAT_3 : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-concat-3

    • BV_EXTRACT_CONCAT_4 : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-concat-4

    • BV_EQ_EXTRACT_ELIM1 : ProofRewriteRule

      Auto-generated from RARE rule bv-eq-extract-elim1

    • BV_EQ_EXTRACT_ELIM2 : ProofRewriteRule

      Auto-generated from RARE rule bv-eq-extract-elim2

    • BV_EQ_EXTRACT_ELIM3 : ProofRewriteRule

      Auto-generated from RARE rule bv-eq-extract-elim3

    • BV_EXTRACT_BITWISE_AND : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-bitwise-and

    • BV_EXTRACT_BITWISE_OR : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-bitwise-or

    • BV_EXTRACT_BITWISE_XOR : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-bitwise-xor

    • BV_EXTRACT_NOT : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-not

    • BV_EXTRACT_SIGN_EXTEND_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-sign-extend-1

    • BV_EXTRACT_SIGN_EXTEND_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-sign-extend-2

    • BV_EXTRACT_SIGN_EXTEND_3 : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-sign-extend-3

    • BV_NOT_XOR : ProofRewriteRule

      Auto-generated from RARE rule bv-not-xor

    • BV_AND_SIMPLIFY_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-and-simplify-1

    • BV_AND_SIMPLIFY_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-and-simplify-2

    • BV_OR_SIMPLIFY_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-or-simplify-1

    • BV_OR_SIMPLIFY_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-or-simplify-2

    • BV_XOR_SIMPLIFY_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-xor-simplify-1

    • BV_XOR_SIMPLIFY_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-xor-simplify-2

    • BV_XOR_SIMPLIFY_3 : ProofRewriteRule

      Auto-generated from RARE rule bv-xor-simplify-3

    • BV_ULT_ADD_ONE : ProofRewriteRule

      Auto-generated from RARE rule bv-ult-add-one

    • BV_CONCAT_TO_MULT : ProofRewriteRule

      Auto-generated from RARE rule bv-concat-to-mult

    • BV_MULT_SLT_MULT_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-mult-slt-mult-1

    • BV_MULT_SLT_MULT_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-mult-slt-mult-2

    • BV_COMMUTATIVE_XOR : ProofRewriteRule

      Auto-generated from RARE rule bv-commutative-xor

    • BV_COMMUTATIVE_COMP : ProofRewriteRule

      Auto-generated from RARE rule bv-commutative-comp

    • BV_ZERO_EXTEND_ELIMINATE_0 : ProofRewriteRule

      Auto-generated from RARE rule bv-zero-extend-eliminate-0

    • BV_SIGN_EXTEND_ELIMINATE_0 : ProofRewriteRule

      Auto-generated from RARE rule bv-sign-extend-eliminate-0

    • BV_NOT_NEQ : ProofRewriteRule

      Auto-generated from RARE rule bv-not-neq

    • BV_ULT_ONES : ProofRewriteRule

      Auto-generated from RARE rule bv-ult-ones

    • BV_CONCAT_MERGE_CONST : ProofRewriteRule

      Auto-generated from RARE rule bv-concat-merge-const

    • BV_COMMUTATIVE_ADD : ProofRewriteRule

      Auto-generated from RARE rule bv-commutative-add

    • BV_SUB_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-sub-eliminate

    • BV_ITE_WIDTH_ONE : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-width-one

    • BV_ITE_WIDTH_ONE_NOT : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-width-one-not

    • BV_EQ_XOR_SOLVE : ProofRewriteRule

      Auto-generated from RARE rule bv-eq-xor-solve

    • BV_EQ_NOT_SOLVE : ProofRewriteRule

      Auto-generated from RARE rule bv-eq-not-solve

    • BV_UGT_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-ugt-eliminate

    • BV_UGE_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-uge-eliminate

    • BV_SGT_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-sgt-eliminate

    • BV_SGE_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-sge-eliminate

    • BV_SLT_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-slt-eliminate

    • BV_SLE_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-sle-eliminate

    • BV_REDOR_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-redor-eliminate

    • BV_REDAND_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-redand-eliminate

    • BV_ULE_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-ule-eliminate

    • BV_COMP_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-comp-eliminate

    • BV_ROTATE_LEFT_ELIMINATE_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-rotate-left-eliminate-1

    • BV_ROTATE_LEFT_ELIMINATE_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-rotate-left-eliminate-2

    • BV_ROTATE_RIGHT_ELIMINATE_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-rotate-right-eliminate-1

    • BV_ROTATE_RIGHT_ELIMINATE_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-rotate-right-eliminate-2

    • BV_NAND_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-nand-eliminate

    • BV_NOR_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-nor-eliminate

    • BV_XNOR_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-xnor-eliminate

    • BV_SDIV_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-sdiv-eliminate

    • BV_SDIV_ELIMINATE_FEWER_BITWISE_OPS : ProofRewriteRule

      Auto-generated from RARE rule bv-sdiv-eliminate-fewer-bitwise-ops

    • BV_ZERO_EXTEND_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-zero-extend-eliminate

    • BV_SIGN_EXTEND_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-sign-extend-eliminate

    • BV_UADDO_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-uaddo-eliminate

    • BV_SADDO_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-saddo-eliminate

    • BV_SDIVO_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-sdivo-eliminate

    • BV_SMOD_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-smod-eliminate

    • BV_SMOD_ELIMINATE_FEWER_BITWISE_OPS : ProofRewriteRule

      Auto-generated from RARE rule bv-smod-eliminate-fewer-bitwise-ops

    • BV_SREM_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-srem-eliminate

    • BV_SREM_ELIMINATE_FEWER_BITWISE_OPS : ProofRewriteRule

      Auto-generated from RARE rule bv-srem-eliminate-fewer-bitwise-ops

    • BV_USUBO_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-usubo-eliminate

    • BV_SSUBO_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-ssubo-eliminate

    • BV_NEGO_ELIMINATE : ProofRewriteRule

      Auto-generated from RARE rule bv-nego-eliminate

    • BV_ITE_EQUAL_CHILDREN : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-equal-children

    • BV_ITE_CONST_CHILDREN_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-const-children-1

    • BV_ITE_CONST_CHILDREN_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-const-children-2

    • BV_ITE_EQUAL_COND_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-equal-cond-1

    • BV_ITE_EQUAL_COND_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-equal-cond-2

    • BV_ITE_EQUAL_COND_3 : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-equal-cond-3

    • BV_ITE_MERGE_THEN_IF : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-merge-then-if

    • BV_ITE_MERGE_ELSE_IF : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-merge-else-if

    • BV_ITE_MERGE_THEN_ELSE : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-merge-then-else

    • BV_ITE_MERGE_ELSE_ELSE : ProofRewriteRule

      Auto-generated from RARE rule bv-ite-merge-else-else

    • BV_SHL_BY_CONST_0 : ProofRewriteRule

      Auto-generated from RARE rule bv-shl-by-const-0

    • BV_SHL_BY_CONST_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-shl-by-const-1

    • BV_SHL_BY_CONST_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-shl-by-const-2

    • BV_LSHR_BY_CONST_0 : ProofRewriteRule

      Auto-generated from RARE rule bv-lshr-by-const-0

    • BV_LSHR_BY_CONST_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-lshr-by-const-1

    • BV_LSHR_BY_CONST_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-lshr-by-const-2

    • BV_ASHR_BY_CONST_0 : ProofRewriteRule

      Auto-generated from RARE rule bv-ashr-by-const-0

    • BV_ASHR_BY_CONST_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-ashr-by-const-1

    • BV_ASHR_BY_CONST_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-ashr-by-const-2

    • BV_AND_CONCAT_PULLUP : ProofRewriteRule

      Auto-generated from RARE rule bv-and-concat-pullup

    • BV_OR_CONCAT_PULLUP : ProofRewriteRule

      Auto-generated from RARE rule bv-or-concat-pullup

    • BV_XOR_CONCAT_PULLUP : ProofRewriteRule

      Auto-generated from RARE rule bv-xor-concat-pullup

    • BV_AND_CONCAT_PULLUP2 : ProofRewriteRule

      Auto-generated from RARE rule bv-and-concat-pullup2

    • BV_OR_CONCAT_PULLUP2 : ProofRewriteRule

      Auto-generated from RARE rule bv-or-concat-pullup2

    • BV_XOR_CONCAT_PULLUP2 : ProofRewriteRule

      Auto-generated from RARE rule bv-xor-concat-pullup2

    • BV_AND_CONCAT_PULLUP3 : ProofRewriteRule

      Auto-generated from RARE rule bv-and-concat-pullup3

    • BV_OR_CONCAT_PULLUP3 : ProofRewriteRule

      Auto-generated from RARE rule bv-or-concat-pullup3

    • BV_XOR_CONCAT_PULLUP3 : ProofRewriteRule

      Auto-generated from RARE rule bv-xor-concat-pullup3

    • BV_XOR_DUPLICATE : ProofRewriteRule

      Auto-generated from RARE rule bv-xor-duplicate

    • BV_XOR_ONES : ProofRewriteRule

      Auto-generated from RARE rule bv-xor-ones

    • BV_XOR_NOT : ProofRewriteRule

      Auto-generated from RARE rule bv-xor-not

    • BV_NOT_IDEMP : ProofRewriteRule

      Auto-generated from RARE rule bv-not-idemp

    • BV_ULT_ZERO_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-ult-zero-1

    • BV_ULT_ZERO_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-ult-zero-2

    • BV_ULT_SELF : ProofRewriteRule

      Auto-generated from RARE rule bv-ult-self

    • BV_LT_SELF : ProofRewriteRule

      Auto-generated from RARE rule bv-lt-self

    • BV_ULE_SELF : ProofRewriteRule

      Auto-generated from RARE rule bv-ule-self

    • BV_ULE_ZERO : ProofRewriteRule

      Auto-generated from RARE rule bv-ule-zero

    • BV_ZERO_ULE : ProofRewriteRule

      Auto-generated from RARE rule bv-zero-ule

    • BV_SLE_SELF : ProofRewriteRule

      Auto-generated from RARE rule bv-sle-self

    • BV_ULE_MAX : ProofRewriteRule

      Auto-generated from RARE rule bv-ule-max

    • BV_NOT_ULT : ProofRewriteRule

      Auto-generated from RARE rule bv-not-ult

    • BV_MULT_POW2_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-mult-pow2-1

    • BV_MULT_POW2_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-mult-pow2-2

    • BV_MULT_POW2_2B : ProofRewriteRule

      Auto-generated from RARE rule bv-mult-pow2-2b

    • BV_EXTRACT_MULT_LEADING_BIT : ProofRewriteRule

      Auto-generated from RARE rule bv-extract-mult-leading-bit

    • BV_UDIV_POW2_NOT_ONE : ProofRewriteRule

      Auto-generated from RARE rule bv-udiv-pow2-not-one

    • BV_UDIV_ZERO : ProofRewriteRule

      Auto-generated from RARE rule bv-udiv-zero

    • BV_UDIV_ONE : ProofRewriteRule

      Auto-generated from RARE rule bv-udiv-one

    • BV_UREM_POW2_NOT_ONE : ProofRewriteRule

      Auto-generated from RARE rule bv-urem-pow2-not-one

    • BV_UREM_ONE : ProofRewriteRule

      Auto-generated from RARE rule bv-urem-one

    • BV_UREM_SELF : ProofRewriteRule

      Auto-generated from RARE rule bv-urem-self

    • BV_SHL_ZERO : ProofRewriteRule

      Auto-generated from RARE rule bv-shl-zero

    • BV_LSHR_ZERO : ProofRewriteRule

      Auto-generated from RARE rule bv-lshr-zero

    • BV_ASHR_ZERO : ProofRewriteRule

      Auto-generated from RARE rule bv-ashr-zero

    • BV_UGT_UREM : ProofRewriteRule

      Auto-generated from RARE rule bv-ugt-urem

    • BV_ULT_ONE : ProofRewriteRule

      Auto-generated from RARE rule bv-ult-one

    • BV_SLT_ZERO : ProofRewriteRule

      Auto-generated from RARE rule bv-slt-zero

    • BV_MERGE_SIGN_EXTEND_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-merge-sign-extend-1

    • BV_MERGE_SIGN_EXTEND_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-merge-sign-extend-2

    • BV_SIGN_EXTEND_EQ_CONST_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-sign-extend-eq-const-1

    • BV_SIGN_EXTEND_EQ_CONST_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-sign-extend-eq-const-2

    • BV_ZERO_EXTEND_EQ_CONST_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-zero-extend-eq-const-1

    • BV_ZERO_EXTEND_EQ_CONST_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-zero-extend-eq-const-2

    • BV_ZERO_EXTEND_ULT_CONST_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-zero-extend-ult-const-1

    • BV_ZERO_EXTEND_ULT_CONST_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-zero-extend-ult-const-2

    • BV_SIGN_EXTEND_ULT_CONST_1 : ProofRewriteRule

      Auto-generated from RARE rule bv-sign-extend-ult-const-1

    • BV_SIGN_EXTEND_ULT_CONST_2 : ProofRewriteRule

      Auto-generated from RARE rule bv-sign-extend-ult-const-2

    • BV_SIGN_EXTEND_ULT_CONST_3 : ProofRewriteRule

      Auto-generated from RARE rule bv-sign-extend-ult-const-3

    • BV_SIGN_EXTEND_ULT_CONST_4 : ProofRewriteRule

      Auto-generated from RARE rule bv-sign-extend-ult-const-4

    • SETS_EQ_SINGLETON_EMP : ProofRewriteRule

      Auto-generated from RARE rule sets-eq-singleton-emp

    • SETS_MEMBER_SINGLETON : ProofRewriteRule

      Auto-generated from RARE rule sets-member-singleton

    • SETS_MEMBER_EMP : ProofRewriteRule

      Auto-generated from RARE rule sets-member-emp

    • SETS_SUBSET_ELIM : ProofRewriteRule

      Auto-generated from RARE rule sets-subset-elim

    • SETS_UNION_COMM : ProofRewriteRule

      Auto-generated from RARE rule sets-union-comm

    • SETS_INTER_COMM : ProofRewriteRule

      Auto-generated from RARE rule sets-inter-comm

    • SETS_INTER_EMP1 : ProofRewriteRule

      Auto-generated from RARE rule sets-inter-emp1

    • SETS_INTER_EMP2 : ProofRewriteRule

      Auto-generated from RARE rule sets-inter-emp2

    • SETS_MINUS_EMP1 : ProofRewriteRule

      Auto-generated from RARE rule sets-minus-emp1

    • SETS_MINUS_EMP2 : ProofRewriteRule

      Auto-generated from RARE rule sets-minus-emp2

    • SETS_UNION_EMP1 : ProofRewriteRule

      Auto-generated from RARE rule sets-union-emp1

    • SETS_UNION_EMP2 : ProofRewriteRule

      Auto-generated from RARE rule sets-union-emp2

    • SETS_INTER_MEMBER : ProofRewriteRule

      Auto-generated from RARE rule sets-inter-member

    • SETS_MINUS_MEMBER : ProofRewriteRule

      Auto-generated from RARE rule sets-minus-member

    • SETS_UNION_MEMBER : ProofRewriteRule

      Auto-generated from RARE rule sets-union-member

    • SETS_CHOOSE_SINGLETON : ProofRewriteRule

      Auto-generated from RARE rule sets-choose-singleton

    • SETS_MINUS_SELF : ProofRewriteRule

      Auto-generated from RARE rule sets-minus-self

    • SETS_IS_EMPTY_ELIM : ProofRewriteRule

      Auto-generated from RARE rule sets-is-empty-elim

    • SETS_IS_SINGLETON_ELIM : ProofRewriteRule

      Auto-generated from RARE rule sets-is-singleton-elim

    • STR_EQ_CTN_FALSE : ProofRewriteRule

      Auto-generated from RARE rule str-eq-ctn-false

    • STR_EQ_CTN_FULL_FALSE1 : ProofRewriteRule

      Auto-generated from RARE rule str-eq-ctn-full-false1

    • STR_EQ_CTN_FULL_FALSE2 : ProofRewriteRule

      Auto-generated from RARE rule str-eq-ctn-full-false2

    • STR_EQ_LEN_FALSE : ProofRewriteRule

      Auto-generated from RARE rule str-eq-len-false

    • STR_SUBSTR_EMPTY_STR : ProofRewriteRule

      Auto-generated from RARE rule str-substr-empty-str

    • STR_SUBSTR_EMPTY_RANGE : ProofRewriteRule

      Auto-generated from RARE rule str-substr-empty-range

    • STR_SUBSTR_EMPTY_START : ProofRewriteRule

      Auto-generated from RARE rule str-substr-empty-start

    • STR_SUBSTR_EMPTY_START_NEG : ProofRewriteRule

      Auto-generated from RARE rule str-substr-empty-start-neg

    • STR_SUBSTR_SUBSTR_START_GEQ_LEN : ProofRewriteRule

      Auto-generated from RARE rule str-substr-substr-start-geq-len

    • STR_SUBSTR_EQ_EMPTY : ProofRewriteRule

      Auto-generated from RARE rule str-substr-eq-empty

    • STR_SUBSTR_Z_EQ_EMPTY_LEQ : ProofRewriteRule

      Auto-generated from RARE rule str-substr-z-eq-empty-leq

    • STR_SUBSTR_EQ_EMPTY_LEQ_LEN : ProofRewriteRule

      Auto-generated from RARE rule str-substr-eq-empty-leq-len

    • STR_LEN_REPLACE_INV : ProofRewriteRule

      Auto-generated from RARE rule str-len-replace-inv

    • STR_LEN_REPLACE_ALL_INV : ProofRewriteRule

      Auto-generated from RARE rule str-len-replace-all-inv

    • STR_LEN_UPDATE_INV : ProofRewriteRule

      Auto-generated from RARE rule str-len-update-inv

    • STR_UPDATE_IN_FIRST_CONCAT : ProofRewriteRule

      Auto-generated from RARE rule str-update-in-first-concat

    • STR_LEN_SUBSTR_IN_RANGE : ProofRewriteRule

      Auto-generated from RARE rule str-len-substr-in-range

    • STR_CONCAT_CLASH : ProofRewriteRule

      Auto-generated from RARE rule str-concat-clash

    • STR_CONCAT_CLASH_REV : ProofRewriteRule

      Auto-generated from RARE rule str-concat-clash-rev

    • STR_CONCAT_CLASH2 : ProofRewriteRule

      Auto-generated from RARE rule str-concat-clash2

    • STR_CONCAT_CLASH2_REV : ProofRewriteRule

      Auto-generated from RARE rule str-concat-clash2-rev

    • STR_CONCAT_UNIFY : ProofRewriteRule

      Auto-generated from RARE rule str-concat-unify

    • STR_CONCAT_UNIFY_REV : ProofRewriteRule

      Auto-generated from RARE rule str-concat-unify-rev

    • STR_CONCAT_UNIFY_BASE : ProofRewriteRule

      Auto-generated from RARE rule str-concat-unify-base

    • STR_CONCAT_UNIFY_BASE_REV : ProofRewriteRule

      Auto-generated from RARE rule str-concat-unify-base-rev

    • STR_PREFIXOF_ELIM : ProofRewriteRule

      Auto-generated from RARE rule str-prefixof-elim

    • STR_SUFFIXOF_ELIM : ProofRewriteRule

      Auto-generated from RARE rule str-suffixof-elim

    • STR_PREFIXOF_EQ : ProofRewriteRule

      Auto-generated from RARE rule str-prefixof-eq

    • STR_SUFFIXOF_EQ : ProofRewriteRule

      Auto-generated from RARE rule str-suffixof-eq

    • STR_PREFIXOF_ONE : ProofRewriteRule

      Auto-generated from RARE rule str-prefixof-one

    • STR_SUFFIXOF_ONE : ProofRewriteRule

      Auto-generated from RARE rule str-suffixof-one

    • STR_SUBSTR_COMBINE1 : ProofRewriteRule

      Auto-generated from RARE rule str-substr-combine1

    • STR_SUBSTR_COMBINE2 : ProofRewriteRule

      Auto-generated from RARE rule str-substr-combine2

    • STR_SUBSTR_COMBINE3 : ProofRewriteRule

      Auto-generated from RARE rule str-substr-combine3

    • STR_SUBSTR_COMBINE4 : ProofRewriteRule

      Auto-generated from RARE rule str-substr-combine4

    • STR_SUBSTR_CONCAT1 : ProofRewriteRule

      Auto-generated from RARE rule str-substr-concat1

    • STR_SUBSTR_CONCAT2 : ProofRewriteRule

      Auto-generated from RARE rule str-substr-concat2

    • STR_SUBSTR_REPLACE : ProofRewriteRule

      Auto-generated from RARE rule str-substr-replace

    • STR_SUBSTR_FULL : ProofRewriteRule

      Auto-generated from RARE rule str-substr-full

    • STR_SUBSTR_FULL_EQ : ProofRewriteRule

      Auto-generated from RARE rule str-substr-full-eq

    • STR_CONTAINS_REFL : ProofRewriteRule

      Auto-generated from RARE rule str-contains-refl

    • STR_CONTAINS_CONCAT_FIND : ProofRewriteRule

      Auto-generated from RARE rule str-contains-concat-find

    • STR_CONTAINS_CONCAT_FIND_CONTRA : ProofRewriteRule

      Auto-generated from RARE rule str-contains-concat-find-contra

    • STR_CONTAINS_SPLIT_CHAR : ProofRewriteRule

      Auto-generated from RARE rule str-contains-split-char

    • STR_CONTAINS_LEQ_LEN_EQ : ProofRewriteRule

      Auto-generated from RARE rule str-contains-leq-len-eq

    • STR_CONTAINS_EMP : ProofRewriteRule

      Auto-generated from RARE rule str-contains-emp

    • STR_CONTAINS_CHAR : ProofRewriteRule

      Auto-generated from RARE rule str-contains-char

    • STR_AT_ELIM : ProofRewriteRule

      Auto-generated from RARE rule str-at-elim

    • STR_REPLACE_SELF : ProofRewriteRule

      Auto-generated from RARE rule str-replace-self

    • STR_REPLACE_ID : ProofRewriteRule

      Auto-generated from RARE rule str-replace-id

    • STR_REPLACE_PREFIX : ProofRewriteRule

      Auto-generated from RARE rule str-replace-prefix

    • STR_REPLACE_NO_CONTAINS : ProofRewriteRule

      Auto-generated from RARE rule str-replace-no-contains

    • STR_REPLACE_FIND_BASE : ProofRewriteRule

      Auto-generated from RARE rule str-replace-find-base

    • STR_REPLACE_FIND_FIRST_CONCAT : ProofRewriteRule

      Auto-generated from RARE rule str-replace-find-first-concat

    • STR_REPLACE_EMPTY : ProofRewriteRule

      Auto-generated from RARE rule str-replace-empty

    • STR_REPLACE_ONE_PRE : ProofRewriteRule

      Auto-generated from RARE rule str-replace-one-pre

    • STR_REPLACE_FIND_PRE : ProofRewriteRule

      Auto-generated from RARE rule str-replace-find-pre

    • STR_REPLACE_ALL_NO_CONTAINS : ProofRewriteRule

      Auto-generated from RARE rule str-replace-all-no-contains

    • STR_REPLACE_RE_NONE : ProofRewriteRule

      Auto-generated from RARE rule str-replace-re-none

    • STR_REPLACE_RE_ALL_NONE : ProofRewriteRule

      Auto-generated from RARE rule str-replace-re-all-none

    • STR_LEN_CONCAT_REC : ProofRewriteRule

      Auto-generated from RARE rule str-len-concat-rec

    • STR_LEN_EQ_ZERO_CONCAT_REC : ProofRewriteRule

      Auto-generated from RARE rule str-len-eq-zero-concat-rec

    • STR_LEN_EQ_ZERO_BASE : ProofRewriteRule

      Auto-generated from RARE rule str-len-eq-zero-base

    • STR_INDEXOF_SELF : ProofRewriteRule

      Auto-generated from RARE rule str-indexof-self

    • STR_INDEXOF_NO_CONTAINS : ProofRewriteRule

      Auto-generated from RARE rule str-indexof-no-contains

    • STR_INDEXOF_OOB : ProofRewriteRule

      Auto-generated from RARE rule str-indexof-oob

    • STR_INDEXOF_OOB2 : ProofRewriteRule

      Auto-generated from RARE rule str-indexof-oob2

    • STR_INDEXOF_CONTAINS_PRE : ProofRewriteRule

      Auto-generated from RARE rule str-indexof-contains-pre

    • STR_INDEXOF_FIND_EMP : ProofRewriteRule

      Auto-generated from RARE rule str-indexof-find-emp

    • STR_INDEXOF_EQ_IRR : ProofRewriteRule

      Auto-generated from RARE rule str-indexof-eq-irr

    • STR_INDEXOF_RE_NONE : ProofRewriteRule

      Auto-generated from RARE rule str-indexof-re-none

    • STR_INDEXOF_RE_EMP_RE : ProofRewriteRule

      Auto-generated from RARE rule str-indexof-re-emp-re

    • STR_TO_LOWER_CONCAT : ProofRewriteRule

      Auto-generated from RARE rule str-to-lower-concat

    • STR_TO_UPPER_CONCAT : ProofRewriteRule

      Auto-generated from RARE rule str-to-upper-concat

    • STR_TO_LOWER_UPPER : ProofRewriteRule

      Auto-generated from RARE rule str-to-lower-upper

    • STR_TO_UPPER_LOWER : ProofRewriteRule

      Auto-generated from RARE rule str-to-upper-lower

    • STR_TO_LOWER_LEN : ProofRewriteRule

      Auto-generated from RARE rule str-to-lower-len

    • STR_TO_UPPER_LEN : ProofRewriteRule

      Auto-generated from RARE rule str-to-upper-len

    • STR_TO_LOWER_FROM_INT : ProofRewriteRule

      Auto-generated from RARE rule str-to-lower-from-int

    • STR_TO_UPPER_FROM_INT : ProofRewriteRule

      Auto-generated from RARE rule str-to-upper-from-int

    • STR_TO_INT_CONCAT_NEG_ONE : ProofRewriteRule

      Auto-generated from RARE rule str-to-int-concat-neg-one

    • STR_LEQ_EMPTY : ProofRewriteRule

      Auto-generated from RARE rule str-leq-empty

    • STR_LEQ_EMPTY_EQ : ProofRewriteRule

      Auto-generated from RARE rule str-leq-empty-eq

    • STR_LEQ_CONCAT_FALSE : ProofRewriteRule

      Auto-generated from RARE rule str-leq-concat-false

    • STR_LEQ_CONCAT_TRUE : ProofRewriteRule

      Auto-generated from RARE rule str-leq-concat-true

    • STR_LEQ_CONCAT_BASE_1 : ProofRewriteRule

      Auto-generated from RARE rule str-leq-concat-base-1

    • STR_LEQ_CONCAT_BASE_2 : ProofRewriteRule

      Auto-generated from RARE rule str-leq-concat-base-2

    • STR_LT_ELIM : ProofRewriteRule

      Auto-generated from RARE rule str-lt-elim

    • STR_FROM_INT_NO_CTN_NONDIGIT : ProofRewriteRule

      Auto-generated from RARE rule str-from-int-no-ctn-nondigit

    • STR_SUBSTR_CTN_CONTRA : ProofRewriteRule

      Auto-generated from RARE rule str-substr-ctn-contra

    • STR_SUBSTR_CTN : ProofRewriteRule

      Auto-generated from RARE rule str-substr-ctn

    • STR_REPLACE_DUAL_CTN : ProofRewriteRule

      Auto-generated from RARE rule str-replace-dual-ctn

    • STR_REPLACE_DUAL_CTN_FALSE : ProofRewriteRule

      Auto-generated from RARE rule str-replace-dual-ctn-false

    • STR_REPLACE_SELF_CTN_SIMP : ProofRewriteRule

      Auto-generated from RARE rule str-replace-self-ctn-simp

    • STR_REPLACE_EMP_CTN_SRC : ProofRewriteRule

      Auto-generated from RARE rule str-replace-emp-ctn-src

    • STR_SUBSTR_CHAR_START_EQ_LEN : ProofRewriteRule

      Auto-generated from RARE rule str-substr-char-start-eq-len

    • STR_CONTAINS_REPL_CHAR : ProofRewriteRule

      Auto-generated from RARE rule str-contains-repl-char

    • STR_CONTAINS_REPL_SELF_TGT_CHAR : ProofRewriteRule

      Auto-generated from RARE rule str-contains-repl-self-tgt-char

    • STR_CONTAINS_REPL_SELF : ProofRewriteRule

      Auto-generated from RARE rule str-contains-repl-self

    • STR_CONTAINS_REPL_TGT : ProofRewriteRule

      Auto-generated from RARE rule str-contains-repl-tgt

    • STR_REPL_REPL_LEN_ID : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-len-id

    • STR_REPL_REPL_SRC_TGT_NO_CTN : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-src-tgt-no-ctn

    • STR_REPL_REPL_TGT_SELF : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-tgt-self

    • STR_REPL_REPL_TGT_NO_CTN : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-tgt-no-ctn

    • STR_REPL_REPL_SRC_SELF : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-src-self

    • STR_REPL_REPL_SRC_INV_NO_CTN1 : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-src-inv-no-ctn1

    • STR_REPL_REPL_SRC_INV_NO_CTN2 : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-src-inv-no-ctn2

    • STR_REPL_REPL_SRC_INV_NO_CTN3 : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-src-inv-no-ctn3

    • STR_REPL_REPL_DUAL_SELF : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-dual-self

    • STR_REPL_REPL_DUAL_ITE1 : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-dual-ite1

    • STR_REPL_REPL_DUAL_ITE2 : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-dual-ite2

    • STR_REPL_REPL_LOOKAHEAD_ID_SIMP : ProofRewriteRule

      Auto-generated from RARE rule str-repl-repl-lookahead-id-simp

    • RE_ALL_ELIM : ProofRewriteRule

      Auto-generated from RARE rule re-all-elim

    • RE_OPT_ELIM : ProofRewriteRule

      Auto-generated from RARE rule re-opt-elim

    • RE_DIFF_ELIM : ProofRewriteRule

      Auto-generated from RARE rule re-diff-elim

    • RE_PLUS_ELIM : ProofRewriteRule

      Auto-generated from RARE rule re-plus-elim

    • RE_CONCAT_STAR_SWAP : ProofRewriteRule

      Auto-generated from RARE rule re-concat-star-swap

    • RE_CONCAT_STAR_REPEAT : ProofRewriteRule

      Auto-generated from RARE rule re-concat-star-repeat

    • RE_CONCAT_STAR_SUBSUME1 : ProofRewriteRule

      Auto-generated from RARE rule re-concat-star-subsume1

    • RE_CONCAT_STAR_SUBSUME2 : ProofRewriteRule

      Auto-generated from RARE rule re-concat-star-subsume2

    • RE_CONCAT_MERGE : ProofRewriteRule

      Auto-generated from RARE rule re-concat-merge

    • RE_UNION_ALL : ProofRewriteRule

      Auto-generated from RARE rule re-union-all

    • RE_UNION_CONST_ELIM : ProofRewriteRule

      Auto-generated from RARE rule re-union-const-elim

    • RE_INTER_ALL : ProofRewriteRule

      Auto-generated from RARE rule re-inter-all

    • RE_STAR_NONE : ProofRewriteRule

      Auto-generated from RARE rule re-star-none

    • RE_STAR_EMP : ProofRewriteRule

      Auto-generated from RARE rule re-star-emp

    • RE_STAR_STAR : ProofRewriteRule

      Auto-generated from RARE rule re-star-star

    • RE_STAR_UNION_DROP_EMP : ProofRewriteRule

      Auto-generated from RARE rule re-star-union-drop-emp

    • RE_LOOP_NEG : ProofRewriteRule

      Auto-generated from RARE rule re-loop-neg

    • RE_INTER_CSTRING : ProofRewriteRule

      Auto-generated from RARE rule re-inter-cstring

    • RE_INTER_CSTRING_NEG : ProofRewriteRule

      Auto-generated from RARE rule re-inter-cstring-neg

    • STR_SUBSTR_LEN_INCLUDE : ProofRewriteRule

      Auto-generated from RARE rule str-substr-len-include

    • STR_SUBSTR_LEN_INCLUDE_PRE : ProofRewriteRule

      Auto-generated from RARE rule str-substr-len-include-pre

    • STR_SUBSTR_LEN_NORM : ProofRewriteRule

      Auto-generated from RARE rule str-substr-len-norm

    • SEQ_LEN_REV : ProofRewriteRule

      Auto-generated from RARE rule seq-len-rev

    • SEQ_REV_REV : ProofRewriteRule

      Auto-generated from RARE rule seq-rev-rev

    • SEQ_REV_CONCAT : ProofRewriteRule

      Auto-generated from RARE rule seq-rev-concat

    • STR_EQ_REPL_SELF_EMP : ProofRewriteRule

      Auto-generated from RARE rule str-eq-repl-self-emp

    • STR_EQ_REPL_NO_CHANGE : ProofRewriteRule

      Auto-generated from RARE rule str-eq-repl-no-change

    • STR_EQ_REPL_TGT_EQ_LEN : ProofRewriteRule

      Auto-generated from RARE rule str-eq-repl-tgt-eq-len

    • STR_EQ_REPL_LEN_ONE_EMP_PREFIX : ProofRewriteRule

      Auto-generated from RARE rule str-eq-repl-len-one-emp-prefix

    • STR_EQ_REPL_EMP_TGT_NEMP : ProofRewriteRule

      Auto-generated from RARE rule str-eq-repl-emp-tgt-nemp

    • STR_EQ_REPL_NEMP_SRC_EMP : ProofRewriteRule

      Auto-generated from RARE rule str-eq-repl-nemp-src-emp

    • STR_EQ_REPL_SELF_SRC : ProofRewriteRule

      Auto-generated from RARE rule str-eq-repl-self-src

    • SEQ_LEN_UNIT : ProofRewriteRule

      Auto-generated from RARE rule seq-len-unit

    • SEQ_NTH_UNIT : ProofRewriteRule

      Auto-generated from RARE rule seq-nth-unit

    • SEQ_REV_UNIT : ProofRewriteRule

      Auto-generated from RARE rule seq-rev-unit

    • SEQ_LEN_EMPTY : ProofRewriteRule

      Auto-generated from RARE rule seq-len-empty

    • RE_IN_EMPTY : ProofRewriteRule

      Auto-generated from RARE rule re-in-empty

    • RE_IN_SIGMA : ProofRewriteRule

      Auto-generated from RARE rule re-in-sigma

    • RE_IN_SIGMA_STAR : ProofRewriteRule

      Auto-generated from RARE rule re-in-sigma-star

    • RE_IN_CSTRING : ProofRewriteRule

      Auto-generated from RARE rule re-in-cstring

    • RE_IN_COMP : ProofRewriteRule

      Auto-generated from RARE rule re-in-comp

    • STR_IN_RE_UNION_ELIM : ProofRewriteRule

      Auto-generated from RARE rule str-in-re-union-elim

    • STR_IN_RE_INTER_ELIM : ProofRewriteRule

      Auto-generated from RARE rule str-in-re-inter-elim

    • STR_IN_RE_RANGE_ELIM : ProofRewriteRule

      Auto-generated from RARE rule str-in-re-range-elim

    • STR_IN_RE_CONTAINS : ProofRewriteRule

      Auto-generated from RARE rule str-in-re-contains

    • STR_IN_RE_FROM_INT_NEMP_DIG_RANGE : ProofRewriteRule

      Auto-generated from RARE rule str-in-re-from-int-nemp-dig-range

    • STR_IN_RE_FROM_INT_DIG_RANGE : ProofRewriteRule

      Auto-generated from RARE rule str-in-re-from-int-dig-range

    • EQ_REFL : ProofRewriteRule

      Auto-generated from RARE rule eq-refl

    • EQ_SYMM : ProofRewriteRule

      Auto-generated from RARE rule eq-symm

    • EQ_COND_DEQ : ProofRewriteRule

      Auto-generated from RARE rule eq-cond-deq

    • EQ_ITE_LIFT : ProofRewriteRule

      Auto-generated from RARE rule eq-ite-lift

    • DISTINCT_BINARY_ELIM : ProofRewriteRule

      Auto-generated from RARE rule distinct-binary-elim

    • UF_BV2NAT_INT2BV : ProofRewriteRule

      Auto-generated from RARE rule uf-bv2nat-int2bv

    • UF_BV2NAT_INT2BV_EXTEND : ProofRewriteRule

      Auto-generated from RARE rule uf-bv2nat-int2bv-extend

    • UF_BV2NAT_INT2BV_EXTRACT : ProofRewriteRule

      Auto-generated from RARE rule uf-bv2nat-int2bv-extract

    • UF_INT2BV_BV2NAT : ProofRewriteRule

      Auto-generated from RARE rule uf-int2bv-bv2nat

    • UF_BV2NAT_GEQ_ELIM : ProofRewriteRule

      Auto-generated from RARE rule uf-bv2nat-geq-elim

    • UF_INT2BV_BVULT_EQUIV : ProofRewriteRule

      Auto-generated from RARE rule uf-int2bv-bvult-equiv

    • UF_INT2BV_BVULE_EQUIV : ProofRewriteRule

      Auto-generated from RARE rule uf-int2bv-bvule-equiv

    • UF_SBV_TO_INT_ELIM : ProofRewriteRule

      Auto-generated from RARE rule uf-sbv-to-int-elim

    • ARITH_SINE_ZERO : ProofRewriteRule

      Auto-generated from RARE rule arith-sine-zero

    • ARITH_SINE_PI2 : ProofRewriteRule

      Auto-generated from RARE rule arith-sine-pi2

    • ARITH_COSINE_ELIM : ProofRewriteRule

      Auto-generated from RARE rule arith-cosine-elim

    • ARITH_TANGENT_ELIM : ProofRewriteRule

      Auto-generated from RARE rule arith-tangent-elim

    • ARITH_SECENT_ELIM : ProofRewriteRule

      Auto-generated from RARE rule arith-secent-elim

    • ARITH_COSECENT_ELIM : ProofRewriteRule

      Auto-generated from RARE rule arith-cosecent-elim

    • ARITH_COTANGENT_ELIM : ProofRewriteRule

      Auto-generated from RARE rule arith-cotangent-elim

    • ARITH_PI_NOT_INT : ProofRewriteRule

      Auto-generated from RARE rule arith-pi-not-int

    • SETS_CARD_SINGLETON : ProofRewriteRule

      Auto-generated from RARE rule sets-card-singleton

    • SETS_CARD_UNION : ProofRewriteRule

      Auto-generated from RARE rule sets-card-union

    • SETS_CARD_MINUS : ProofRewriteRule

      Auto-generated from RARE rule sets-card-minus

    • SETS_CARD_EMP : ProofRewriteRule

      Auto-generated from RARE rule sets-card-emp

    Instances For