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

Function validate_controlsAndTarget

quest/src/core/validation.cpp:3652–3655  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);
3655}
3656void validate_controlAndTwoTargets(Qureg qureg, int ctrl, int targ1, int targ2, const char* caller) {
3657
3658 int targs[] = {targ1, targ2};

Calls 1

Tested by

no test coverage detected