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

Function validate_newMaxNumReportedScalars

quest/src/core/validation.cpp:1497–1501  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1495}
1496
1497void validate_newMaxNumReportedScalars(qindex numRows, qindex numCols, const char* caller) {
1498
1499 assertThat(numRows >= 0, report::INVALID_NUM_REPORTED_SCALARS, {{"${NUM_ITEMS}", numRows}}, caller);
1500 assertThat(numCols >= 0, report::INVALID_NUM_REPORTED_SCALARS, {{"${NUM_ITEMS}", numCols}}, caller);
1501}
1502
1503void validate_newMaxNumReportedSigFigs(int numSigFigs, const char* caller) {
1504

Callers 1

setMaxNumReportedItemsFunction · 0.85

Calls 1

assertThatFunction · 0.85

Tested by

no test coverage detected