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

well_founded.v: stop requiring tactics

parent 73c7d80a
No related branches found
No related tags found
1 merge request!327countable.v: prove choose_proper
(** * Theorems on well founded relations *)
From stdpp Require Import base tactics.
From stdpp Require Import base.
From stdpp Require Import options.
Lemma Acc_impl {A} (R1 R2 : relation A) x :
Acc R1 x ( y1 y2, R2 y1 y2 R1 y1 y2) Acc R2 x.
Proof. induction 1; constructor; naive_solver. Qed.
Proof. induction 1; constructor; auto. Qed.
Notation wf := well_founded.
......
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