Created
August 5, 2016 00:23
-
-
Save mukeshtiwari/20754038ae429a24f4f4512bc3f902ee to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
k : nat | |
u, v : cand | |
l : list (cand * cand) | |
H1 : fold_left | |
(fun (x : bool) (b : cand) => x && (bool_in (b, snd (u, v)) l || el k (fst (u, v), b))) | |
cand_all true = true | |
b : cand | |
============================ | |
In (b, snd (u, v)) l \/ edge (fst (u, v)) b <= k |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
forall (k : nat) (p : cand * cand) (l : list (cand * cand)),
fold_left (fun (x : bool) (b : cand) => x && (bool_in (b, snd p) l || el k (fst p, b)))
cand_all true = true -> forall b : cand, In (b, snd p) l / edge (fst p) b <= k