| 44 | virtual bool doSolve(const lhs &A, const rhs &b, rhs &x) const = 0; |
| 45 | |
| 46 | bool consistentData(const lhs &A, const rhs &b) const |
| 47 | { |
| 48 | return A.rows() == b.rows(); |
| 49 | } |
| 50 | |
| 51 | bool validSolution(const lhs &A, const rhs &b, const rhs &x) const |
| 52 | { |
nothing calls this directly
no outgoing calls
no test coverage detected