| 11 | IOFormat TinyApiFmt(4, 0, ", ", "\n", "[", "]"); |
| 12 | |
| 13 | static int check_dimension(std::string matrix_name, std::string rows_or_columns, int actual, int expected) { |
| 14 | if (actual != expected) { |
| 15 | std::cout << matrix_name << " has " << actual << " " << rows_or_columns << ". Expected " << expected << "." << std::endl; |
| 16 | return 1; |
| 17 | } |
| 18 | return 0; |
| 19 | } |
| 20 | |
| 21 | int tiny_setup(TinySolver** solverp, |
| 22 | tinyMatrix Adyn, tinyMatrix Bdyn, tinyMatrix fdyn, tinyMatrix Q, tinyMatrix R, |
no outgoing calls
no test coverage detected