2015-11-30 11:19:08 -07:00
|
|
|
constant subt : nat → nat → Prop
|
|
|
|
|
|
|
|
lemma subt_trans [forward] {a b c : nat} : subt a b → subt b c → subt a c :=
|
|
|
|
sorry
|
|
|
|
|
2015-12-06 15:01:49 -08:00
|
|
|
set_option blast.strategy "ematch"
|
2015-11-30 11:19:08 -07:00
|
|
|
|
|
|
|
example (a b c d : nat) : subt a b → subt b c → subt c d → subt a d :=
|
|
|
|
by blast
|