diff options
author | Son Ho | 2023-08-04 18:19:37 +0200 |
---|---|---|
committer | Son Ho | 2023-08-04 18:19:37 +0200 |
commit | f7c09787c4a7457568d3d79d38b45caac4af8772 (patch) | |
tree | edac38167e05e76e7e38798e89dadc672df06f3b /backends/lean/Base/Arith | |
parent | 931fabe3e8590815548d606b33fc8db31e9f6010 (diff) |
Start adding support for Arrays/Slices in the Lean library
Diffstat (limited to '')
-rw-r--r-- | backends/lean/Base/Arith/Int.lean | 31 | ||||
-rw-r--r-- | backends/lean/Base/Arith/Scalar.lean | 4 |
2 files changed, 25 insertions, 10 deletions
diff --git a/backends/lean/Base/Arith/Int.lean b/backends/lean/Base/Arith/Int.lean index 7a5bbe98..531ec94f 100644 --- a/backends/lean/Base/Arith/Int.lean +++ b/backends/lean/Base/Arith/Int.lean @@ -53,13 +53,21 @@ open Lean Lean.Elab Lean.Meta -- Explore a term by decomposing the applications (we explore the applied -- functions and their arguments, but ignore lambdas, forall, etc. - -- should we go inside?). +-- Remark: we pretend projections are applications, and explore the projected +-- terms. partial def foldTermApps (k : α → Expr → MetaM α) (s : α) (e : Expr) : MetaM α := do - -- We do it in a very simpler manner: we deconstruct applications, - -- and recursively explore the sub-expressions. Note that we do - -- not go inside foralls and abstractions (should we?). - e.withApp fun f args => do - let s ← k s f - args.foldlM (foldTermApps k) s + -- Explore the current expression + let e := e.consumeMData + let s ← k s e + -- Recurse + match e with + | .proj _ _ e' => + foldTermApps k s e' + | .app .. => + e.withApp fun f args => do + let s ← k s f + args.foldlM (foldTermApps k) s + | _ => pure s -- Provided a function `k` which lookups type class instances on an expression, -- collect all the instances lookuped by applying `k` on the sub-expressions of `e`. @@ -83,15 +91,18 @@ def collectInstancesFromMainCtx (k : Expr → MetaM (Option Expr)) : Tactic.Tact let hs := HashSet.empty -- Explore the declarations let decls ← ctx.getDecls - decls.foldlM (fun hs d => collectInstances k hs d.toExpr) hs + let hs ← decls.foldlM (fun hs d => collectInstances k hs d.toExpr) hs + -- Also explore the goal + collectInstances k hs (← Tactic.getMainTarget) -- Helper def lookupProp (fName : String) (className : Name) (e : Expr) : MetaM (Option Expr) := do trace[Arith] fName -- TODO: do we need Lean.observing? -- This actually eliminates the error messages + trace[Arith] m!"{fName}: {e}" Lean.observing? do - trace[Arith] m!"{fName}: observing" + trace[Arith] m!"{fName}: observing: {e}" let ty ← Lean.Meta.inferType e let hasProp ← mkAppM className #[ty] let hasPropInst ← trySynthInstance hasProp @@ -112,11 +123,11 @@ def collectHasIntPropInstancesFromMainCtx : Tactic.TacticM (HashSet Expr) := do -- Return an instance of `PropHasImp` for `e` if it has some def lookupPropHasImp (e : Expr) : MetaM (Option Expr) := do - trace[Arith] "lookupPropHasImp" + trace[Arith] m!"lookupPropHasImp: {e}" -- TODO: do we need Lean.observing? -- This actually eliminates the error messages Lean.observing? do - trace[Arith] "lookupPropHasImp: observing" + trace[Arith] "lookupPropHasImp: observing: {e}" let ty ← Lean.Meta.inferType e trace[Arith] "lookupPropHasImp: ty: {ty}" let cl ← mkAppM ``PropHasImp #[ty] diff --git a/backends/lean/Base/Arith/Scalar.lean b/backends/lean/Base/Arith/Scalar.lean index b792ff21..db672489 100644 --- a/backends/lean/Base/Arith/Scalar.lean +++ b/backends/lean/Base/Arith/Scalar.lean @@ -46,4 +46,8 @@ example (x y : U32) : x.val ≤ Scalar.max ScalarTy.U32 := by example (x y : U32) : x.val ≤ Scalar.max ScalarTy.U32 := by scalar_tac +-- Checking that we explore the goal *and* projectors correctly +example (x : U32 × U32) : 0 ≤ x.fst.val := by + scalar_tac + end Arith |