| 1521 | |
| 1522 | |
| 1523 | map<string, size_t> QVM:: |
| 1524 | runWithConfiguration(QProg& qProg, vector<ClassicalCondition>& vCBit, int shots, const NoiseModel& noise_model) |
| 1525 | { |
| 1526 | rapidjson::Document doc; |
| 1527 | doc.Parse("{}"); |
| 1528 | auto& alloc = doc.GetAllocator(); |
| 1529 | doc.AddMember("shots", shots, alloc); |
| 1530 | return runWithConfiguration(qProg, vCBit, doc, noise_model); |
| 1531 | } |
| 1532 | |
| 1533 | map<string, size_t> QVM:: |
| 1534 | runWithConfiguration(QProg& qProg, vector<int>& cibts_addr, int shots, const NoiseModel& noise_model) |
nothing calls this directly
no test coverage detected