| 627 | // and/or re-use printer_ functions as much as possible |
| 628 | |
| 629 | std::string toString(vector<int> list) { |
| 630 | |
| 631 | std::string out = "{ "; |
| 632 | for (int& e : list) |
| 633 | out += std::to_string(e) + " "; |
| 634 | out += "}"; |
| 635 | return out; |
| 636 | } |
| 637 | |
| 638 | std::string toString(PauliStr str, vector<int> targs) { |
| 639 |
no test coverage detected