X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fmatrix.cpp;h=821e184d3acc0e8f014e67216f90aba91390778c;hp=3f3b2e6fa93b34edaca43a427d94487db91bcd12;hb=4a9f6c276daf54acbb2f5951f0435bfb6f014809;hpb=690cd58cc13ad5052eb5851c573984965d0c40c1 diff --git a/ginac/matrix.cpp b/ginac/matrix.cpp index 3f3b2e6f..821e184d 100644 --- a/ginac/matrix.cpp +++ b/ginac/matrix.cpp @@ -3,7 +3,7 @@ * Implementation of symbolic matrices */ /* - * GiNaC Copyright (C) 1999-2006 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 @@ -113,12 +113,13 @@ matrix::matrix(const archive_node &n, lst &sym_lst) : inherited(n, sym_lst) if (!(n.find_unsigned("row", row)) || !(n.find_unsigned("col", col))) throw (std::runtime_error("unknown matrix dimensions in archive")); m.reserve(row * col); - for (unsigned int i=0; true; i++) { + archive_node::archive_node_cit first = n.find_first("m"); + archive_node::archive_node_cit last = n.find_last("m"); + ++last; + for (archive_node::archive_node_cit i=first; isetflag(status_flags::dynallocated | - status_flags::evaluated); + status_flags::evaluated); } ex matrix::subs(const exmap & mp, unsigned options) const @@ -1413,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; cis_zero())) + return false; + return true; +} + ex lst_to_matrix(const lst & l) { lst::const_iterator itr, itc;