You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many bloqs (like MultiAnd, MultiControlPauli etc.) currently expect a control values object as a Tuple[int, ...]. This has a consequence that we cannot instantiate these objects symbolically.
We should replace cvs: Tuple[int, ...] with CtrlSpec object that can be instantiated symbolically as well.
The text was updated successfully, but these errors were encountered:
Would we want some sort of CtrlSpec that takes a parameter n for the number of controls and doesn't fully specify what the control values actually are? Usually during costing the difference between a positive and negative control is negligible
Many bloqs (like
MultiAnd
,MultiControlPauli
etc.) currently expect a control values object as aTuple[int, ...]
. This has a consequence that we cannot instantiate these objects symbolically.We should replace
cvs: Tuple[int, ...]
withCtrlSpec
object that can be instantiated symbolically as well.The text was updated successfully, but these errors were encountered: