lean4-htt/tests/lean/run/sharecommon_mpz.lean
Sebastian Ullrich 4d58a3d124
feat: revamp aux decl name generation (#8363)
This PR unifies various ways of naming auxiliary declarations in a
conflict-free way and ensures the method is compatible with diverging
branches of elaboration such as parallelism or Aesop-like
backtracking+replaying search.
2025-05-16 14:57:18 +00:00

54 lines
1 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Lean
open Lean Meta Tactic Grind
def runGrind (x : GrindM α) : MetaM α := do
GrindM.run x (← mkParams {}) (pure ())
@[noinline] def mkA (x : Nat) := x + 1
def tst (a b : Nat) : GrindM Unit := do
IO.println a
IO.println b
let a ← shareCommon (mkNatLit a)
let b ← shareCommon (mkNatLit b)
IO.println (isSameExpr a b)
/--
info: 1000000000000000000000000001
1000000000000000000000000001
true
-/
#guard_msgs (info) in
run_meta do
let a := mkA 1000000000000000000000000000
let b := 1000000000000000000000000001
runGrind (tst a b)
/--
info: 1001
1001
true
-/
#guard_msgs (info) in
run_meta do
let a := mkA 1000
let b := 1001
runGrind (tst a b)
def tst2 (a b : Nat) : IO Unit := do
IO.println a
IO.println b
let (a, b) := ShareCommon.shareCommon' (mkNatLit a, mkNatLit b)
IO.println (isSameExpr a b)
/--
info: 1000000000000000000000000001
1000000000000000000000000001
true
-/
#guard_msgs (info) in
run_meta do
let a := mkA 1000000000000000000000000000
let b := 1000000000000000000000000001
tst2 a b