Documentation

Lean.Meta.Tactic.Grind.Arith.Cutsat.Util

Returns true if the variables in the given polynomial are sorted in decreasing order.

Equations

gcdExt a b returns the triple (g, α, β) such that

  • g = gcd a b (with g ≥ 0), and
  • g = α * a + β * β.
@[inline]
Equations
  • One or more equations did not get rendered due to their size.

Returns true if the cutsat state is inconsistent.

Equations
  • One or more equations did not get rendered due to their size.

Returns true if x has been eliminated using an equality constraint.

Equations
Equations
  • One or more equations did not get rendered due to their size.
@[extern lean_grind_cutsat_assert_eq]

Resets the assingment of any variable bigger or equal to x.

Equations
  • One or more equations did not get rendered due to their size.
Equations
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.

Adds y as an occurrence of x. That is, x occurs in lowers[y], uppers[y], or dvdCnstrs[y].

Equations
  • One or more equations did not get rendered due to their size.

Given p a polynomial being inserted into lowers, uppers, or dvdCnstrs, get its leading variable y, and adds y as an occurrence for the remaining variables in p.

Equations
Equations
  • One or more equations did not get rendered due to their size.
@[reducible, inline]

Returns a Lean expression representing the variable context used to construct cutsat proofs.

Equations
@[reducible, inline]
Equations
  • One or more equations did not get rendered due to their size.
@[reducible, inline]
Equations
  • One or more equations did not get rendered due to their size.

Tries to evaluate the polynomial p using the partial model/assignment built so far. The result is none if the polynomial contains variables that have not been assigned.

Equations
Equations
@[reducible, inline]
Equations

Returns .true if c is satisfied by the current partial model, .undef if c contains unassigned variables, and .false otherwise.

Equations
  • One or more equations did not get rendered due to their size.
Equations

Returns .true if c is satisfied by the current partial model, .undef if c contains unassigned variables, and .false otherwise.

Equations

Returns .true if c is satisfied by the current partial model, .undef if c contains unassigned variables, and .false otherwise.

Equations

Given a polynomial p, returns some (x, k, c) if p contains the monomial k*x, and x has been eliminated using the equality c.

Equations