cirq.decompose_once
Decomposes a value into operations, if possible.
cirq.decompose_once(
val: Any,
default=RaiseTypeErrorIfNotProvided,
*args,
flatten: bool = True,
context: Optional[cirq.DecompositionContext
] = None,
**kwargs
)
Used in the notebooks
This method decomposes the value exactly once, instead of decomposing it
and then continuing to decomposing the decomposed operations recursively
until some criteria is met (which is what cirq.decompose
does).
Args |
val
|
The value to call _decompose_ on, if possible.
|
default
|
A default result to use if the value doesn't have a
_decompose_ method or that method returns NotImplemented or
None . If not specified, non-decomposable values cause a
TypeError .
|
*args
|
Positional arguments to forward into the _decompose_ method of
val . For example, this is used to tell gates what qubits they are
being applied to.
|
flatten
|
If True, the returned OP-TREE will be flattened to a list of operations.
|
context
|
Decomposition context specifying common configurable options for
controlling the behavior of decompose.
|
**kwargs
|
Keyword arguments to forward into the _decompose_ method of
val .
|
Returns |
The result of val._decompose_(*args, **kwargs) , if val has a
_decompose_ method and it didn't return NotImplemented or None .
Otherwise default is returned, if it was specified. Otherwise an error
is raised.
|
Raises |
TypeError
|
val didn't have a _decompose_ method (or that method returned
NotImplemented or None ) and default wasn't set.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-06-27 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-06-27 UTC."],[],[]]