X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Fex.cpp;h=4b3b0f3d2b16bc4d3a21e453b8fd604206b3e72f;hb=9413cd14faaf2980de3884915e22a5beda068ecc;hp=6df349890631277df2d1bf7483465e308610ff2c;hpb=0052e44b34c982b13b08454fd6c9429fe7a90f71;p=ginac.git diff --git a/ginac/ex.cpp b/ginac/ex.cpp index 6df34989..4b3b0f3d 100644 --- a/ginac/ex.cpp +++ b/ginac/ex.cpp @@ -123,7 +123,7 @@ ex ex::subs(const lst & ls, const lst & lr, unsigned options) const // Convert the lists to a map exmap m; - for (lst::const_iterator its = ls.begin(), itr = lr.begin(); its != ls.end(); ++its, ++itr) { + for (auto its = ls.begin(), itr = lr.begin(); its != ls.end(); ++its, ++itr) { m.insert(std::make_pair(*its, *itr)); // Search for products and powers in the expressions to be substituted @@ -140,7 +140,7 @@ ex ex::subs(const lst & ls, const lst & lr, unsigned options) const /** Substitute objects in an expression (syntactic substitution) and return * the result as a new expression. There are two valid types of * replacement arguments: 1) a relational like object==ex and 2) a list of - * relationals lst(object1==ex1,object2==ex2,...). */ + * relationals lst{object1==ex1,object2==ex2,...}. */ ex ex::subs(const ex & e, unsigned options) const { if (e.info(info_flags::relation_equal)) { @@ -162,8 +162,7 @@ ex ex::subs(const ex & e, unsigned options) const // Argument is a list: convert it to a map exmap m; GINAC_ASSERT(is_a(e)); - for (lst::const_iterator it = ex_to(e).begin(); it != ex_to(e).end(); ++it) { - ex r = *it; + for (auto & r : ex_to(e)) { if (!r.info(info_flags::relation_equal)) throw(std::invalid_argument("basic::subs(ex): argument must be a list of equations")); const ex & s = r.op(0); @@ -243,8 +242,8 @@ bool ex::is_polynomial(const ex & vars) const { if (is_a(vars)) { const lst & varlst = ex_to(vars); - for (lst::const_iterator i=varlst.begin(); i!=varlst.end(); ++i) - if (!bp->is_polynomial(*i)) + for (auto & it : varlst) + if (!bp->is_polynomial(it)) return false; return true; } @@ -307,7 +306,7 @@ ptr ex::construct_from_basic(const basic & other) // apply eval() once more. The recursion stops when eval() calls // hold() or returns an object that already has its "evaluated" // flag set, such as a symbol or a numeric. - const ex & tmpex = other.eval(1); + const ex & tmpex = other.eval(); // Eventually, the eval() recursion goes through the "else" branch // below, which assures that the object pointed to by tmpex.bp is @@ -402,10 +401,7 @@ basic & ex::construct_from_int(int i) case 12: return *const_cast(_num12_p); default: - basic *bp = new numeric(i); - bp->setflag(status_flags::dynallocated); - GINAC_ASSERT(bp->get_refcount() == 0); - return *bp; + return dynallocate(i); } } @@ -439,10 +435,7 @@ basic & ex::construct_from_uint(unsigned int i) case 12: return *const_cast(_num12_p); default: - basic *bp = new numeric(i); - bp->setflag(status_flags::dynallocated); - GINAC_ASSERT(bp->get_refcount() == 0); - return *bp; + return dynallocate(i); } } @@ -500,10 +493,7 @@ basic & ex::construct_from_long(long i) case 12: return *const_cast(_num12_p); default: - basic *bp = new numeric(i); - bp->setflag(status_flags::dynallocated); - GINAC_ASSERT(bp->get_refcount() == 0); - return *bp; + return dynallocate(i); } } @@ -537,19 +527,13 @@ basic & ex::construct_from_ulong(unsigned long i) case 12: return *const_cast(_num12_p); default: - basic *bp = new numeric(i); - bp->setflag(status_flags::dynallocated); - GINAC_ASSERT(bp->get_refcount() == 0); - return *bp; + return dynallocate(i); } } basic & ex::construct_from_double(double d) { - basic *bp = new numeric(d); - bp->setflag(status_flags::dynallocated); - GINAC_ASSERT(bp->get_refcount() == 0); - return *bp; + return dynallocate(d); } //////////