feat(library/blast/simplifier/simp_rule_set): rename metaclass to '[simps]'
The previous name [rrs] was too cryptic.
This commit is contained in:
parent
1eb28b842e
commit
2d007c7c23
3 changed files with 4 additions and 4 deletions
|
@ -55,7 +55,7 @@
|
|||
"class" "parsing_only" "coercion" "unfold_full" "constructor"
|
||||
"reducible" "irreducible" "semireducible" "quasireducible" "wf"
|
||||
"whnf" "multiple_instances" "none" "decls" "declarations"
|
||||
"coercions" "classes" "symm" "subst" "refl" "trans" "simp" "congr" "backward"
|
||||
"coercions" "classes" "symm" "subst" "refl" "trans" "simp" "simps" "congr" "backward"
|
||||
"forward" "no_pattern" "notations" "abbreviations" "begin_end_hints" "tactic_hints"
|
||||
"reduce_hints" "unfold_hints" "aliases" "eqv"
|
||||
"localrefinfo" "recursor"))
|
||||
|
|
|
@ -578,8 +578,8 @@ io_state_stream const & operator<<(io_state_stream const & out, simp_rule_sets c
|
|||
|
||||
void initialize_simplifier_rule_set() {
|
||||
g_prefix = new name(name::mk_internal_unique_name());
|
||||
g_class_name = new name("rrs");
|
||||
g_key = new std::string("rrs");
|
||||
g_class_name = new name("simps");
|
||||
g_key = new std::string("simp");
|
||||
rrs_ext::initialize();
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import data.nat
|
||||
open - [rrs] nat
|
||||
open - [simps] nat
|
||||
|
||||
definition Sum : nat → (nat → nat) → nat :=
|
||||
sorry
|
||||
|
|
Loading…
Reference in a new issue