| 751 | } |
| 752 | |
| 753 | std::vector<TestFunction *> getTestFunctionsOfDegree(int degree) |
| 754 | { |
| 755 | auto testFuncs = std::vector<TestFunction *>(); |
| 756 | for(int i = 1; i < (int) testFunctions.size(); ++i) { |
| 757 | if(degree < (int) testFunctions.at(i).size()) { |
| 758 | testFuncs.push_back(testFunctions.at(i).at(degree)); |
| 759 | } |
| 760 | } |
| 761 | return testFuncs; |
| 762 | } |
| 763 | |
| 764 | std::vector<TestFunction *> getTestFunctionWithNumVariables(int numVariables) |
| 765 | { |
nothing calls this directly
no outgoing calls
no test coverage detected