Equations
Instances For
Equations
Instances For
Equations
Instances For
Instances For
Additional version description like "nightly-2018-03-11"
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
This function can be used to detect whether the compiler has support for generating LLVM instead of C. It is used by lake instead of the --features flag in order to avoid having to run a compiler for this every time on startup. See #2572.
Valid identifier names
Equations
- Eq (Lean.isGreek c) ((Decidable.decide (LE.le 913 c.val)).and (Decidable.decide (LE.le c.val 989)))
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq (Lean.isNumericSubscript c) ((Decidable.decide (LE.le 8320 c.val)).and (Decidable.decide (LE.le c.val 8329)))
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq (Lean.isIdFirst c) ((c.isAlpha.or (Decidable.decide (Eq c '_'))).or (Lean.isLetterLike c))
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
- Eq (Lean.isIdEndEscape c) (Decidable.decide (Eq c Lean.idEndEscape))
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Creates a round-trippable string name component if possible, otherwise returns none
.
Names that are valid identifiers are not escaped, and otherwise, if they do not contain »
, they are escaped.
- If
force
istrue
, then even valid identifiers are escaped.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Uses the separator sep
(usually "."
) to combine the components of the Name
into a string.
See the documentation for Name.toString
for an explanation of escape
and isToken
.
Instances For
Equations
- Eq (Lean.Name.toStringWithSep.maybeEscape escape s force) (ite (Eq escape Bool.true) ((Lean.Name.escapePart s force).getD s) s)
Instances For
Converts a name to a string.
- If
escape
istrue
, then escapes name components using«
and»
to ensure that those names that can appear in source files round trip. Names with number components, anonymous names, and names containing»
might not round trip. Furthermore, "pseudo-syntax" produced by the delaborator, such as_
,#0
or?u
, is not escaped. - The optional
isToken
function is used whenescape
istrue
to determine whether more escaping is necessary to avoid parser tokens. The insertion algorithm works so long as parser tokens do not themselves contain«
or»
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq Lean.Name.instToString { toString := fun (n : Lean.Name) => n.toString }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq Lean.Name.instRepr { reprPrec := Lean.Name.reprPrec }
Instances For
Equations
- Eq x✝.capitalize (Lean.Name.toString.maybePseudoSyntax.match_1 (fun (x : Lean.Name) => Lean.Name) x✝ (fun (p : Lean.Name) (s : String) => p.str s.capitalize) fun (n : Lean.Name) => n)
Instances For
eraseSuffix? n s
return n'
if n
is of the form n == n' ++ s
.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq (a.instDecidableEq b) (if h : Eq (BEq.beq a b) Bool.true then Decidable.isTrue ⋯ else Decidable.isFalse ⋯)
Instances For
Equations
- Eq g.mkChild { fst := { namePrefix := g.namePrefix.mkNum g.idx }, snd := { namePrefix := g.namePrefix, idx := HAdd.hAdd g.idx 1 } }
Instances For
- getNGen : m NameGenerator
- setNGen : NameGenerator → m Unit
Instances For
Equations
- Eq Lean.mkFreshId do let ngen ← Lean.MonadNameGenerator.getNGen let r : Lean.Name := ngen.curr Lean.MonadNameGenerator.setNGen ngen.next Pure.pure r
Instances For
Equations
- Eq (Lean.monadNameGeneratorLift m n) { getNGen := liftM Lean.MonadNameGenerator.getNGen, setNGen := fun (ngen : Lean.NameGenerator) => liftM (Lean.MonadNameGenerator.setNGen ngen) }
Instances For
Equations
- Eq Lean.Syntax.instReprPreresolved { reprPrec := Lean.Syntax.reprPreresolved✝ }
Instances For
Equations
- Eq Lean.Syntax.instRepr { reprPrec := Lean.Syntax.reprSyntax✝ }
Instances For
Equations
- Eq Lean.Syntax.instReprTSyntax { reprPrec := Lean.Syntax.reprTSyntax✝ }
Instances For
Syntax that represents a Lean term.
Equations
- Eq Lean.Syntax.Term (Lean.TSyntax (List.cons `term List.nil))
Instances For
Syntax that represents a command.
Equations
- Eq Lean.Syntax.Command (Lean.TSyntax (List.cons `command List.nil))
Instances For
Syntax that represents a universe level.
Equations
- Eq Lean.Syntax.Level (Lean.TSyntax (List.cons `level List.nil))
Instances For
Syntax that represents a tactic.
Equations
- Eq Lean.Syntax.Tactic (Lean.TSyntax (List.cons `tactic List.nil))
Instances For
Syntax that represents a precedence (e.g. for an operator).
Equations
- Eq Lean.Syntax.Prec (Lean.TSyntax (List.cons `prec List.nil))
Instances For
Syntax that represents a priority (e.g. for an instance declaration).
Equations
- Eq Lean.Syntax.Prio (Lean.TSyntax (List.cons `prio List.nil))
Instances For
Syntax that represents an identifier.
Equations
Instances For
Syntax that represents a string literal.
Equations
Instances For
Syntax that represents a character literal.
Equations
Instances For
Syntax that represents a quoted name literal that begins with a back-tick.
Equations
Instances For
Syntax that represents a scientific numeric literal that may have decimal and exponential parts.
Instances For
Syntax that represents a numeric literal.
Equations
Instances For
Syntax that represents macro hygiene info.
Instances For
Equations
- Eq Lean.TSyntax.instCoeConsSyntaxNodeKindNil { coe := fun (stx : Lean.TSyntax (List.cons k List.nil)) => { raw := stx.raw } }
Instances For
Equations
- Eq Lean.TSyntax.instCoeConsSyntaxNodeKind { coe := fun (stx : Lean.TSyntax ks) => { raw := stx.raw } }
Instances For
Equations
- Eq Lean.TSyntax.instCoeIdentTerm { coe := fun (s : Lean.Syntax.Ident) => { raw := s.raw } }
Instances For
Equations
- Eq Lean.TSyntax.instCoeDepTermMkIdentIdent { coe := { raw := Lean.Syntax.ident info ss n res } }
Instances For
Equations
- Eq Lean.TSyntax.instCoeStrLitTerm { coe := fun (s : Lean.Syntax.StrLit) => { raw := s.raw } }
Instances For
Equations
- Eq Lean.TSyntax.instCoeNameLitTerm { coe := fun (s : Lean.Syntax.NameLit) => { raw := s.raw } }
Instances For
Equations
- Eq Lean.TSyntax.instCoeScientificLitTerm { coe := fun (s : Lean.Syntax.ScientificLit) => { raw := s.raw } }
Instances For
Equations
- Eq Lean.TSyntax.instCoeNumLitTerm { coe := fun (s : Lean.Syntax.NumLit) => { raw := s.raw } }
Instances For
Equations
- Eq Lean.TSyntax.instCoeCharLitTerm { coe := fun (s : Lean.Syntax.CharLit) => { raw := s.raw } }
Instances For
Equations
- Eq Lean.TSyntax.instCoeIdentLevel { coe := fun (s : Lean.Syntax.Ident) => { raw := s.raw } }
Instances For
Equations
- Eq Lean.TSyntax.instCoeNumLitPrio { coe := fun (s : Lean.Syntax.NumLit) => { raw := s.raw } }
Instances For
Equations
- Eq Lean.TSyntax.instCoeNumLitPrec { coe := fun (s : Lean.Syntax.NumLit) => { raw := s.raw } }
Instances For
Equations
- Eq Lean.TSyntax.Compat.instCoeTailSyntax { coe := fun (s : Lean.Syntax) => { raw := s } }
Instances For
Equations
Instances For
Equations
Instances For
Compare syntax structures modulo source info.
Equations
- Eq Lean.Syntax.instBEq { beq := Lean.Syntax.structEq }
Instances For
Equations
- Eq Lean.Syntax.instBEqTSyntax { beq := fun (x1 x2 : Lean.TSyntax k) => BEq.beq x1.raw x2.raw }
Instances For
Finds the first SourceInfo
from the back of stx
or none
if no SourceInfo
can be found.
Finds the first SourceInfo
from the back of stx
or SourceInfo.none
if no SourceInfo
can be found.
Equations
- Eq stx.getTailInfo (stx.getTailInfo?.getD Lean.SourceInfo.none)
Instances For
Finds the trailing size of the first SourceInfo
from the back of stx
.
If no SourceInfo
can be found or the first SourceInfo
from the back of stx
contains no
trailing whitespace, the result is 0
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Finds the trailing whitespace substring of the first SourceInfo
from the back of stx
.
If no SourceInfo
can be found or the first SourceInfo
from the back of stx
contains
no trailing whitespace, the result is none
.
Equations
- Eq stx.getTrailing? stx.getTailInfo.getTrailing?
Instances For
Finds the tail position of the trailing whitespace of the first SourceInfo
from the back of stx
.
If no SourceInfo
can be found or the first SourceInfo
from the back of stx
contains
no trailing whitespace and lacks a tail position, the result is none
.
Equations
- Eq (stx.getTrailingTailPos? canonicalOnly) (stx.getTailInfo.getTrailingTailPos? canonicalOnly)
Instances For
Return substring of original input covering stx
.
Result is meaningful only if all involved SourceInfo.original
s refer to the same string (as is the case after parsing).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Replaces the trailing whitespace in stx
, if any, with an empty substring.
The trailing substring's startPos
and str
are preserved in order to ensure that the result could
have been produced by the parser, in case any syntax consumers rely on such an assumption.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Return the first atom/identifier that has position information
Equations
- Eq (target.copyHeadTailInfoFrom source) ((target.setHeadInfo source.getHeadInfo).setTailInfo source.getTailInfo)
Instances For
Ensure head position is synthetic. The server regards syntax as "original" only if both head and tail info are original
.
Equations
- Eq stx.mkSynthetic (stx.setHeadInfo (Lean.SourceInfo.fromRef stx))
Instances For
Expand macros in the given syntax.
A node with kind k
is visited only if p k
is true.
Note that the default value for p
returns false for by ...
nodes.
This is a "hack". The tactic framework abuses the macro system to implement extensible tactics.
For example, one can define
syntax "my_trivial" : tactic -- extensible tactic
macro_rules | `(tactic| my_trivial) => `(tactic| decide)
macro_rules | `(tactic| my_trivial) => `(tactic| assumption)
When the tactic evaluator finds the tactic my_trivial
, it tries to evaluate the macro_rule
expansions
until one "works", i.e., the macro expansion is evaluated without producing an exception.
We say this solution is a bit hackish because the term elaborator may invoke expandMacros
with (p := fun _ => true)
,
and expand the tactic macros as just macros. In the example above, my_trivial
would be replaced with assumption
,
decide
would not be tried if assumption
fails at tactic evaluation time.
We are considering two possible solutions for this issue: 1- A proper extensible tactic feature that does not rely on the macro system.
2- Typed macros that know the syntax categories they're working in. Then, we would be able to select which
syntactic categories are expanded by expandMacros
.
Helper functions for processing Syntax programmatically #
Create an identifier copying the position from src
.
To refer to a specific constant, use mkCIdentFrom
instead.
Equations
- Eq (Lean.mkIdentFrom src val canonical) { raw := Lean.Syntax.ident (Lean.SourceInfo.fromRef src canonical) (ToString.toString val).toSubstring val List.nil }
Instances For
Equations
- Eq (Lean.mkIdentFromRef val canonical) do let __do_lift ← Lean.MonadRef.getRef Pure.pure (Lean.mkIdentFrom __do_lift val canonical)
Instances For
Create an identifier referring to a constant c
copying the position from src
.
This variant of mkIdentFrom
makes sure that the identifier cannot accidentally
be captured.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq (Lean.mkCIdentFromRef c canonical) do let __do_lift ← Lean.MonadRef.getRef Pure.pure (Lean.mkCIdentFrom __do_lift c canonical).raw
Instances For
Equations
Instances For
Equations
- Eq (Lean.mkIdent val) { raw := Lean.Syntax.ident Lean.SourceInfo.none (ToString.toString val).toSubstring val List.nil }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq (Lean.mkHole ref canonical) (Lean.mkNode `Lean.Parser.Term.hole (List.cons (Lean.mkAtomFrom ref "_" canonical) List.nil).toArray).raw
Instances For
Equations
- Eq (Lean.Syntax.mkSep a sep) (Lean.mkNullNode (Lean.mkSepArray a sep))
Instances For
Equations
- Eq (Lean.Syntax.SepArray.ofElems elems) { elemsAndSeps := Lean.mkSepArray elems (ite (Eq sep.isEmpty Bool.true) Lean.mkNullNode (Lean.mkAtom sep)) }
Instances For
Equations
Instances For
Constructs a typed separated array from elements. The given array does not include the separators.
Like Syntax.SepArray.ofElems
but for typed syntax.
Equations
- Eq (Lean.Syntax.TSepArray.ofElems elems) { elemsAndSeps := (Lean.Syntax.SepArray.ofElems (Lean.TSyntaxArray.raw elems)).elemsAndSeps }
Instances For
Equations
Instances For
Create syntax representing a Lean term application, but avoid degenerate empty applications.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq (Lean.Syntax.mkCApp fn args) (Lean.Syntax.mkApp { raw := (Lean.mkCIdent fn).raw } args)
Instances For
Equations
- Eq (Lean.Syntax.mkLit kind val info) (Lean.mkNode kind (List.cons (Lean.Syntax.atom info val) List.nil).toArray)
Instances For
Equations
- Eq (Lean.Syntax.mkCharLit val info) (Lean.Syntax.mkLit Lean.charLitKind val.quote info)
Instances For
Equations
- Eq (Lean.Syntax.mkStrLit val info) (Lean.Syntax.mkLit Lean.strLitKind val.quote info)
Instances For
Equations
- Eq (Lean.Syntax.mkNumLit val info) (Lean.Syntax.mkLit Lean.numLitKind val info)
Instances For
Equations
- Eq (Lean.Syntax.mkNatLit val info) (Lean.Syntax.mkLit Lean.numLitKind (ToString.toString val) info)
Instances For
Equations
- Eq (Lean.Syntax.mkScientificLit val info) (Lean.Syntax.mkLit Lean.scientificLitKind val info)
Instances For
Equations
- Eq (Lean.Syntax.mkNameLit val info) (Lean.Syntax.mkLit Lean.nameLitKind val info)
Instances For
Recall that we don't have special Syntax constructors for storing numeric and string atoms.
The idea is to have an extensible approach where embedded DSLs may have new kind of atoms and/or
different ways of representing them. So, our atoms contain just the parsed string.
The main Lean parser uses the kind numLitKind
for storing natural numbers that can be encoded
in binary, octal, decimal and hexadecimal format. isNatLit
implements a "decoder"
for Syntax objects representing these numerals.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
Instances For
Decodes a 'scientific number' string which is consumed by the OfScientific
class.
Takes as input a string such as 123
, 123.456e7
and returns a triple (n, sign, e)
with value given by
n * 10^-e
if sign
else n * 10^e
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Decodes a valid string gap after the \
.
Note that this function matches "\" whitespace+
rather than
the more restrictive "\" newline whitespace*
since this simplifies the implementation.
Justification: this does not overlap with any other sequences beginning with \
.
Equations
- Eq (Lean.Syntax.decodeStringGap s i) do guard (Eq (s.get i).isWhitespace Bool.true) Option.some (s.nextWhile Char.isWhitespace (s.next i))
Instances For
Takes a raw string literal, counts the number of #
's after the r
, and interprets it as a string.
The position i
should start at 1
, which is the character after the leading r
.
The algorithm is simple: we are given r##...#"...string..."##...#
with zero or more #
s.
By counting the number of leading #
's, we can extract the ...string...
.
Takes the string literal lexical syntax parsed by the parser and interprets it as a string.
This is where escape sequences are processed for example.
The string s
is either a plain string literal or a raw string literal.
If it returns none
then the string literal is ill-formed, which indicates a bug in the parser.
The function is not required to return none
if the string literal is ill-formed.
Equations
- One or more equations did not get rendered due to their size.
Instances For
If the provided Syntax
is a string literal, returns the string it represents.
Even if the Syntax
is a str
node, the function may return none
if its internally ill-formed.
The parser should always create well-formed str
nodes.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Split a name literal (without the backtick) into its dot-separated components. For example,
foo.bla.«bo.o»
↦ ["foo", "bla", "«bo.o»"]
. If the literal cannot be parsed, return []
.
Equations
Instances For
Converts a substring to the Lean compiler's representation of names. The resulting name is
hierarchical, and the string is split at the dots ('.'
).
"a.b".toSubstring.toName
is the name a.b
, not «a.b»
. For the latter, use
Name.mkSimple ∘ Substring.toString
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Converts a string to the Lean compiler's representation of names. The resulting name is
hierarchical, and the string is split at the dots ('.'
).
"a.b".toName
is the name a.b
, not «a.b»
. For the latter, use Name.mkSimple
.
Equations
- Eq s.toName s.toSubstring.toName
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq x✝.isAtom (Lean.Syntax.isLit?.match_1 (fun (x : Lean.Syntax) => Bool) x✝ (fun (info : Lean.SourceInfo) (val : String) => Bool.true) fun (x : Lean.Syntax) => Bool.false)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq (stx.find? p) (Lean.Syntax.findAux p stx)
Instances For
Interprets a numeric literal as a natural number.
Returns 0
if the syntax is malformed.
Equations
- Eq (Lean.TSyntax.getNat s) (s.raw.isNatLit?.getD 0)
Instances For
Extracts the parsed name from the syntax of an identifier.
Returns Name.anonymous
if the syntax is malformed.
Equations
- Eq (Lean.TSyntax.getId s) s.raw.getId
Instances For
Extracts the components of a scientific numeric literal.
Returns a triple (n, sign, e) : Nat × Bool × Nat
; the number's value is given by:
if sign then n * 10 ^ (-e) else n * 10 ^ e
Returns (0, false, 0)
if the syntax is malformed.
Equations
- Eq (Lean.TSyntax.getScientific s) (s.raw.isScientificLit?.getD { fst := 0, snd := { fst := Bool.false, snd := 0 } })
Instances For
Decodes a string literal, removing quotation marks and unescaping escaped characters.
Returns ""
if the syntax is malformed.
Equations
- Eq (Lean.TSyntax.getString s) (s.raw.isStrLit?.getD "")
Instances For
Decodes a character literal.
Returns (default : Char)
if the syntax is malformed.
Equations
Instances For
Decodes a quoted name literal, returning the name.
Returns Lean.Name.anonymous
if the syntax is malformed.
Equations
Instances For
Decodes macro hygiene information.
Equations
Instances For
Equations
- Eq Lean.TSyntax.Compat.instCoeTailArraySyntaxTSepArray { coe := fun (a : Array Lean.Syntax) => Lean.Syntax.TSepArray.ofElems (Lean.TSyntaxArray.mk a) }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Reflect a runtime datum back to surface syntax (best-effort).
Instances For
Equations
- Eq Lean.instQuoteOfCoeHTCTTSyntaxConsSyntaxNodeKindNil { quote := fun (a : α) => CoeHTCT.coe (Lean.Quote.quote a) }
Instances For
Equations
- Eq Lean.instQuoteTermMkStr1 { quote := id }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq Lean.instQuoteCharCharLitKind { quote := fun (val : Char) => Lean.Syntax.mkCharLit val }
Instances For
Equations
- Eq Lean.instQuoteStringStrLitKind { quote := fun (val : String) => Lean.Syntax.mkStrLit val }
Instances For
Equations
- Eq Lean.instQuoteNatNumLitKind { quote := fun (n : Nat) => Lean.Syntax.mkNumLit (ToString.toString n) }
Instances For
Equations
- Eq Lean.instQuoteSubstringMkStr1 { quote := fun (s : Substring) => Lean.Syntax.mkCApp `String.toSubstring' (List.cons (Lean.Quote.quote `term s.toString) List.nil).toArray }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq Lean.instQuoteListMkStr1 { quote := Lean.quoteList✝ }
Instances For
Equations
- Eq Lean.instQuoteArrayMkStr1 { quote := Lean.quoteArray✝ }
Instances For
Evaluator for prec
DSL
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq Lean.termEval_prec_ (Lean.ParserDescr.node `Lean.termEval_prec_ 1022 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol "eval_prec ") (Lean.ParserDescr.cat `prec 1024)))
Instances For
Evaluator for prio
DSL
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq Lean.termEval_prio_ (Lean.ParserDescr.node `Lean.termEval_prio_ 1022 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol "eval_prio ") (Lean.ParserDescr.cat `prio 1024)))
Instances For
Equations
Instances For
Filters an array of syntax, treating every other element as a separator rather than an element to
test with the monadic predicate p
. The resulting array contains the tested elements for which p
returns true
, separated by the corresponding separator elements.
Equations
- Eq (a.filterSepElemsM p) (Array.filterSepElemsMAux✝ a p 0 List.nil.toArray)
Instances For
Filters an array of syntax, treating every other element as a separator rather than an element to
test with the predicate p
. The resulting array contains the tested elements for which p
returns
true
, separated by the corresponding separator elements.
Equations
- Eq (a.filterSepElems p) (a.filterSepElemsM p).run
Instances For
Equations
- Eq (a.mapSepElemsM f) (Array.mapSepElemsMAux✝ a f 0 List.nil.toArray)
Instances For
Equations
- Eq (a.mapSepElems f) (a.mapSepElemsM f).run
Instances For
Equations
- Eq sa.getElems sa.elemsAndSeps.getSepElems
Instances For
Equations
Instances For
Equations
Instances For
Equations
- Eq Lean.Syntax.instEmptyCollectionSepArray { emptyCollection := { elemsAndSeps := EmptyCollection.emptyCollection } }
Instances For
Equations
- Eq Lean.Syntax.instEmptyCollectionTSepArray { emptyCollection := { elemsAndSeps := EmptyCollection.emptyCollection } }
Instances For
Equations
Instances For
Equations
Instances For
Equations
- Eq Lean.Syntax.instCoeTSyntaxArrayOfTSyntax { coe := fun (a : Lean.TSyntaxArray k) => Array.map Coe.coe a }
Instances For
Equations
- Eq Lean.Syntax.instCoeOutTSyntaxArrayArray { coe := fun (a : Lean.TSyntaxArray k) => a.raw }
Instances For
Equations
- Eq Lean.Syntax.instCoeTermTSyntaxConsSyntaxNodeKindMkStr4Nil { coe := fun (stx : Lean.Syntax.Term) => { raw := stx.raw } }
Instances For
Helper functions for manipulating interpolated strings #
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq stx.getSepArgs stx.getArgs.getSepElems
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq Lean.Meta.instReprTransparencyMode { reprPrec := Lean.Meta.reprTransparencyMode✝ }
Instances For
Equations
- Eq Lean.Meta.instReprEtaStructMode { reprPrec := Lean.Meta.reprEtaStructMode✝ }
Instances For
Equations
- Eq Lean.Meta.instReprConfig_1 { reprPrec := Lean.Meta.reprConfig✝ }
Instances For
Equations
- Eq Lean.Meta.instReprConfig { reprPrec := Lean.Meta.reprConfig✝ }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Eq x✝.isAll (Lean.Meta.Occurrences.isAll.match_1 (fun (x : Lean.Meta.Occurrences) => Bool) x✝ (fun (_ : Unit) => Bool.true) fun (x : Lean.Meta.Occurrences) => Bool.false)
Instances For
Controls which new mvars are turned in to goals by the apply
tactic.
nonDependentFirst
mvars that don't depend on other goals appear first in the goal list.nonDependentOnly
only mvars that don't depend on other goals are added to goal list.all
all unassigned mvars are added to the goal list.
- nonDependentFirst : ApplyNewGoals
- nonDependentOnly : ApplyNewGoals
- all : ApplyNewGoals
Instances For
Configures the behaviour of the apply
tactic.
- newGoals : ApplyNewGoals
- synthAssignedInstances : Bool
If
synthAssignedInstances
istrue
, thenapply
will synthesize instance implicit arguments even if they have assigned byisDefEq
, and then check whether the synthesized value matches the one inferred. Thecongr
tactic sets this flag to false. - allowSynthFailures : Bool
If
allowSynthFailures
istrue
, thenapply
will return instance implicit arguments for which typeclass search failed as new goals. - approx : Bool
If
approx := true
, then we turn onisDefEq
approximations. That is, we use theapproxDefEq
combinator.
Instances For
Controls which new mvars are turned in to goals by the apply
tactic.
nonDependentFirst
mvars that don't depend on other goals appear first in the goal list.nonDependentOnly
only mvars that don't depend on other goals are added to goal list.all
all unassigned mvars are added to the goal list.
Instances For
Configures the behavior of the rewrite
and rw
tactics.
- transparency : TransparencyMode
The transparency mode to use for unfolding
- offsetCnstrs : Bool
Whether to support offset constraints such as
?x + 1 =?= e
- occs : Occurrences
Which occurrences to rewrite
- newGoals : NewGoals
How to convert the resulting metavariables into new goals
Instances For
Configures the behaviour of the omega
tactic.
- splitDisjunctions : Bool
Split disjunctions in the context.
Note that with
splitDisjunctions := false
omega will not be able to solvex = y
goals as these are usually handled by introducing¬ x = y
as a hypothesis, then replacing this withx < y ∨ x > y
.On the other hand,
omega
does not currently detect disjunctions which, when split, introduce no new useful information, so the presence of irrelevant disjunctions in the context can significantly increase run time. - splitNatSub : Bool
Whenever
((a - b : Nat) : Int)
is found, register the disjunctionb ≤ a ∧ ((a - b : Nat) : Int) = a - b ∨ a < b ∧ ((a - b : Nat) : Int) = 0
for later splitting. - splitNatAbs : Bool
Whenever
Int.natAbs a
is found, register the disjunction0 ≤ a ∧ Int.natAbs a = a ∨ a < 0 ∧ Int.natAbs a = - a
for later splitting. - splitMinMax : Bool
Whenever
min a b
ormax a b
is found, rewrite in terms of the definitionif a ≤ b ...
, for later case splitting.
Instances For
Type used to lift an arbitrary value into a type parameter so it can appear in a proof goal.
It is used by the #check_tactic command.
- intro {α : Sort u} (val : α) : CheckGoalType val
Instances For
Extracts the items from a tactic configuration,
either a Lean.Parser.Tactic.optConfig
, Lean.Parser.Tactic.config
, or these wrapped in null nodes.
Equations
- Eq (Lean.Parser.Tactic.mkOptConfig items) { raw := Lean.Syntax.node1 Lean.SourceInfo.none `Lean.Parser.Tactic.optConfig (Lean.mkNullNode items.raw) }
Instances For
Appends two tactic configurations.
The configurations can be Lean.Parser.Tactic.optConfig
, Lean.Parser.Tactic.config
,
or these wrapped in null nodes (for example because the syntax is (config)?
).
Equations
Instances For
erw [rules]
is a shorthand for rw (transparency := .default) [rules]
.
This does rewriting up to unfolding of regular definitions (by comparison to regular rw
which only unfolds @[reducible]
definitions).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
simp!
is shorthand for simp
with autoUnfold := true
.
This will rewrite with all equation lemmas, which can be used to
partially evaluate many definitions.
Equations
- One or more equations did not get rendered due to their size.
Instances For
simp_arith
has been deprecated. It was a shorthand for simp +arith +decide
.
Note that +decide
is not needed for reducing arithmetic terms since simprocs have been added to Lean.
Equations
- One or more equations did not get rendered due to their size.
Instances For
simp_arith!
has been deprecated. It was a shorthand for simp! +arith +decide
.
Note that +decide
is not needed for reducing arithmetic terms since simprocs have been added to Lean.
Equations
- One or more equations did not get rendered due to their size.
Instances For
simp_all!
is shorthand for simp_all
with autoUnfold := true
.
This will rewrite with all equation lemmas, which can be used to
partially evaluate many definitions.
Equations
- One or more equations did not get rendered due to their size.
Instances For
simp_all_arith
has been deprecated. It was a shorthand for simp_all +arith +decide
.
Note that +decide
is not needed for reducing arithmetic terms since simprocs have been added to Lean.
Equations
- One or more equations did not get rendered due to their size.
Instances For
simp_all_arith!
has been deprecated. It was a shorthand for simp_all! +arith +decide
.
Note that +decide
is not needed for reducing arithmetic terms since simprocs have been added to Lean.
Equations
- One or more equations did not get rendered due to their size.
Instances For
dsimp!
is shorthand for dsimp
with autoUnfold := true
.
This will rewrite with all equation lemmas, which can be used to
partially evaluate many definitions.
Equations
- One or more equations did not get rendered due to their size.