lean4-htt/tests/lean/run/sharecommon_mpz.lean
Leonardo de Moura 5f684b4777
feat: support mpz in the shareCommon APIs (#7838)
This PR adds support for mpz objects (i.e., big nums) to the
`shareCommon` functions.
2025-04-06 19:52:50 +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 `dummy (← 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