| 731 | } |
| 732 | |
| 733 | std::string pretty_print(const DenseVector &denseVec) |
| 734 | { |
| 735 | std::string str("["); |
| 736 | for(int i = 0; i < denseVec.rows(); i++) { |
| 737 | str += to_string(denseVec(i)); |
| 738 | if(i + 1 < denseVec.rows()) { |
| 739 | str += "; "; |
| 740 | } |
| 741 | } |
| 742 | str += "]"; |
| 743 | |
| 744 | return str; |
| 745 | } |
| 746 | |
| 747 | |
| 748 | TestFunction *getTestFunction(int numVariables, int degree) |
nothing calls this directly
no outgoing calls
no test coverage detected