MCPcopy Create free account
hub / github.com/QuEST-Kit/QuEST / applyMultiControlledPauliY

Function applyMultiControlledPauliY

quest/src/api/operations.cpp:841–847  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

839}
840
841void applyMultiControlledPauliY(Qureg qureg, int* controls, int numControls, int target) {
842 validate_quregFields(qureg, __func__);
843 validate_controlsAndTarget(qureg, controls, numControls, target, __func__);
844
845 // harmlessly re-validates
846 applyMultiStateControlledPauliY(qureg, controls, nullptr, numControls, target);
847}
848
849void applyMultiControlledPauliZ(Qureg qureg, int* controls, int numControls, int target) {
850 validate_quregFields(qureg, __func__);

Callers

nothing calls this directly

Calls 3

validate_quregFieldsFunction · 0.85

Tested by

no test coverage detected