chore(tests/lean/run/blast_grind1): use 'core_grind'

Reason: we will change the semantics of 'grind'
This commit is contained in:
Leonardo de Moura 2016-01-01 16:46:15 -08:00
parent 4f1415174e
commit 17a2f1fe47

View file

@ -11,12 +11,12 @@ by blast
print ex1
attribute Exists.intro [intro!] -- grind and core_grind only process [intro!] declarations
attribute Exists.intro [intro!] -- core_grind only process [intro!] declarations
example (p q : nat → Prop) : (∃ x, p x ∧ q x) → (∃ x, q x) ∧ (∃ x, p x) :=
by blast
set_option blast.strategy "grind"
set_option blast.strategy "core_grind"
example (a b c : nat) : a = b a = c → b = c → b = a :=
by blast