-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Finshed Lemma A24 #29
Conversation
Added BL zero proof
Moved lemmas from explicit decomp into qubit helpers to prevent cyclic dep
@@ -1,4 +1,7 @@ | |||
Require Import QuantumLib.Complex. | |||
(* @Kyle: this Matrix dependency is for just 1 thing. Maybe better to rewrite the sub_mul_mod |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which Lemma(s) are needed from Matrix? It seems like you've already moved over nat_tight_bound
and sub_mod_equiv
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh wait this is from QuantumLib.Matrix
; what's the import for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
its sub_mul_mod
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I see; I feel like it's fine because we aren't introducing any potential cyclic dependency issues as we are pulling from QuantumLib, not reorganizing code in our own codebase.
Finished lemma A24
Added controlled unit properties of gates in gatehelpers.
Moved more lemmas out of explicit decomps. Maybe this file should be eliminated at some point.