feat(kernel): do not hide semi-constructive axioms
This commit is contained in:
parent
1829e64a76
commit
8048cbd6f2
2 changed files with 2 additions and 5 deletions
|
@ -142,10 +142,8 @@ bool is_hits_decl(environment const & env, name const & n) {
|
|||
return false;
|
||||
return
|
||||
n == *g_trunc || n == *g_trunc_tr || n == *g_trunc_rec ||
|
||||
n == *g_trunc_is_trunc_trunc ||
|
||||
n == *g_hit_quotient || n == *g_hit_quotient_class_of ||
|
||||
n == *g_hit_quotient_rec || n == *g_hit_quotient_eq_of_rel ||
|
||||
n == *g_hit_quotient_rec_eq_of_rel;
|
||||
n == *g_hit_quotient_rec;
|
||||
}
|
||||
|
||||
void initialize_hits_module() {
|
||||
|
|
|
@ -133,8 +133,7 @@ bool is_quotient_decl(environment const & env, name const & n) {
|
|||
if (!get_extension(env).m_initialized)
|
||||
return false;
|
||||
return
|
||||
n == *g_propext || n == *g_quotient || n == *g_quotient_lift || n == *g_quotient_ind || n == *g_quotient_mk ||
|
||||
n == *g_quotient_sound;
|
||||
n == *g_quotient || n == *g_quotient_lift || n == *g_quotient_ind || n == *g_quotient_mk;
|
||||
}
|
||||
|
||||
void initialize_quotient_module() {
|
||||
|
|
Loading…
Add table
Reference in a new issue