| 556 | const Args& args, |
| 557 | const std::map<std::string, array>& kwargs); |
| 558 | void insert( |
| 559 | std::vector<std::string> kwarg_keys, |
| 560 | std::vector<array> inputs, |
| 561 | std::vector<array> outputs, |
| 562 | std::vector<array> tape) { |
| 563 | auto [it, _] = table.emplace(inputs.size(), std::vector<Function>{}); |
| 564 | it->second.emplace_back( |
| 565 | std::move(kwarg_keys), |
| 566 | std::move(inputs), |
| 567 | std::move(outputs), |
| 568 | std::move(tape)); |
| 569 | } |
| 570 | |
| 571 | void print_functions(std::ostream& os) { |
| 572 | int n = 1; |
no test coverage detected