author | wenzelm |
Thu, 12 Jun 2025 12:44:47 +0200 | |
changeset 82695 | d93ead9ac6df |
parent 82663 | bd951e02d6b9 |
permissions | -rw-r--r-- |
82663 | 1 |
(* Title: Tools/simp_legacy.ML |
2 |
||
3 |
Legacy simplifier configuration interfaces -- to be phased out eventually. |
|
4 |
*) |
|
5 |
||
82695 | 6 |
infix 4 addsimps delsimps addsimprocs delsimprocs; |
82663 | 7 |
|
82695 | 8 |
fun ctxt addsimps thms = ctxt |> Simplifier.add_simps thms; |
9 |
fun ctxt delsimps thms = ctxt |> Simplifier.del_simps thms; |
|
82663 | 10 |
|
82695 | 11 |
fun ctxt addsimprocs procs = ctxt |> fold Simplifier.add_proc procs; |
12 |
fun ctxt delsimprocs procs = ctxt |> fold Simplifier.del_proc procs; |