| 165 | } |
| 166 | |
| 167 | bool test_basic_multiplication() { |
| 168 | return TestUtils::test_basic_operation( |
| 169 | "Multiplication", |
| 170 | [](CactusGraph& graph, size_t a, size_t b) { return graph.multiply(a, b); }, |
| 171 | {2, 3, 4, 5}, |
| 172 | {3, 4, 2, 2}, |
| 173 | {6, 12, 8, 10} |
| 174 | ); |
| 175 | } |
| 176 | |
| 177 | bool test_basic_division() { |
| 178 | return TestUtils::test_basic_operation( |
no test coverage detected