3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

Fix incorrect assertions and bug

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-01-10 08:52:25 -08:00
parent 191de6f7b5
commit eca78aa9c6
3 changed files with 21 additions and 5 deletions

View file

@ -108,8 +108,10 @@ public:
\remark The vector r must have at least A.n() capacity
The numer of linear independent rows is returned.
Store the new matrix in B.
*/
unsigned linear_independent_rows(mpz_matrix const & A, unsigned * r);
unsigned linear_independent_rows(mpz_matrix const & A, unsigned * r, mpz_matrix & B);
// method for debugging purposes
void display(std::ostream & out, mpz_matrix const & A, unsigned cell_width=4) const;