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

Function validate_controlAndTargets

quest/src/core/validation.cpp:3648–3651  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3646 validate_controlsAndTargets(qureg, &ctrl, 1, &targ, 1, caller);
3647}
3648void validate_controlAndTargets(Qureg qureg, int ctrl, int* targs, int numTargs, const char* caller) {
3649
3650 validate_controlsAndTargets(qureg, &ctrl, 1, targs, numTargs, caller);
3651}
3652void validate_controlsAndTarget(Qureg qureg, int* ctrls, int numCtrls, int targ, const char* caller) {
3653
3654 validate_controlsAndTargets(qureg, ctrls, numCtrls, &targ, 1, caller);

Callers 3

Calls 1

Tested by

no test coverage detected