refactor(library/standard): rename bool_decidable to prop_decidable

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2014-07-22 09:53:05 -07:00
parent b522ea6f2d
commit c5cbe1cc2c

View file

@ -14,5 +14,5 @@ theorem inhabited_decidable [instance] (a : Prop) : inhabited (decidable a)
-- Note that inhabited_decidable is marked as an instance, and it is silently used
-- for synthesizing the implicit argument in the following 'epsilon'
theorem bool_decidable [instance] (a : Prop) : decidable a
theorem prop_decidable [instance] (a : Prop) : decidable a
:= epsilon (λ d, true)