Skip to content
Snippets Groups Projects
Verified Commit e3157145 authored by Paolo G. Giarrusso's avatar Paolo G. Giarrusso
Browse files

Mark set_size and set_fold as TC opaque

parent 15c28d70
No related branches found
No related tags found
No related merge requests found
......@@ -10,9 +10,11 @@ Set Default Proof Using "Type*".
(** Operations *)
Global Instance set_size `{Elements A C} : Size C := length elements.
Typeclasses Opaque set_size.
Definition set_fold `{Elements A C} {B}
(f : A B B) (b : B) : C B := foldr f b elements.
Typeclasses Opaque set_fold.
Global Instance set_filter
`{Elements A C, Empty C, Singleton A C, Union C} : Filter A C := λ P _ X,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment