From: Richard Kreckel Date: Fri, 22 Feb 2008 04:23:57 +0000 (+0000) Subject: * Improved lsolve() of systems containing non-numeric coefficients. X-Git-Tag: release_1-5-0~117 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=f69a24a4fd6caf42ef773d1cef21562a8afa068a;ds=sidebyside * Improved lsolve() of systems containing non-numeric coefficients. --- diff --git a/NEWS b/NEWS index 572d0c43..d2891a36 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,8 @@ This file records noteworthy changes. +1.5.0 () +* Improved lsolve() of systems containing non-numeric coefficients. + 1.4.0 (31 August 2007) * New tinfo mechanism. * Removed rtt from class symbol. diff --git a/ginac/matrix.cpp b/ginac/matrix.cpp index 038084b6..821e184d 100644 --- a/ginac/matrix.cpp +++ b/ginac/matrix.cpp @@ -3,7 +3,7 @@ * Implementation of symbolic matrices */ /* - * GiNaC Copyright (C) 1999-2007 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -222,7 +222,7 @@ ex matrix::eval(int level) const m2[r*col+c] = m[r*col+c].eval(level); return (new matrix(row, col, m2))->setflag(status_flags::dynallocated | - status_flags::evaluated); + status_flags::evaluated); } ex matrix::subs(const exmap & mp, unsigned options) const @@ -1414,18 +1414,27 @@ int matrix::fraction_free_elimination(const bool det) unsigned r0 = 0; for (unsigned c0=0; c0=0) { - if (indx>0) { + } else { + if (indx>r0) { + // Matrix needs pivoting, swap rows r0 and indx of tmp_n and tmp_d. sign = -sign; - // tmp_n's rows r0 and indx were swapped, do the same in tmp_d: - for (unsigned c=c0; c