X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ffactor.cpp;h=598a74454324563ba4bf1dc433205b238ff5ff19;hp=e9b2569b57f6f654d7e1f48819d9c2c28f09cbf1;hb=c12c8ec3c5cf0c75f061f6c52d04206277bbdcca;hpb=792cda15eb0089edccdc0a89e7c39e58e940b87b diff --git a/ginac/factor.cpp b/ginac/factor.cpp index e9b2569b..598a7445 100644 --- a/ginac/factor.cpp +++ b/ginac/factor.cpp @@ -33,7 +33,7 @@ */ /* - * GiNaC Copyright (C) 1999-2015 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2016 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 @@ -916,8 +916,7 @@ static void berlekamp(const umodpoly& a, upvec& upv) return; } - list factors; - factors.push_back(a); + list factors = {a}; unsigned int size = 1; unsigned int r = 1; unsigned int q = cl_I_to_uint(R->modulus); @@ -937,8 +936,7 @@ static void berlekamp(const umodpoly& a, upvec& upv) div(*u, g, uo); if ( equal_one(uo) ) { throw logic_error("berlekamp: unexpected divisor."); - } - else { + } else { *u = uo; } factors.push_back(g); @@ -1021,8 +1019,7 @@ static void modsqrfree(const umodpoly& a, upvec& factors, vector& mult) mult[i] *= prime; } } - } - else { + } else { umodpoly ap; expt_1_over_p(a, prime, ap); size_t previ = mult.size(); @@ -1107,8 +1104,7 @@ static void same_degree_factor(const umodpoly& a, upvec& upv) for ( size_t i=0; i primes; - if ( primes.size() == 0 ) { - primes.push_back(3); primes.push_back(5); primes.push_back(7); + if (primes.empty()) { + primes = {3, 5, 7}; } if ( p >= primes.back() ) { unsigned int candidate = primes.back() + 2; while ( true ) { size_t n = primes.size()/2; for ( size_t i=0; i p ) break; + if (candidate > p) + break; } return candidate; } @@ -1405,8 +1402,7 @@ public: if ( len > n/2 ) return false; fill(k.begin(), k.begin()+len, 1); fill(k.begin()+len+1, k.end(), 0); - } - else { + } else { k[last++] = 0; k[last] = 1; } @@ -1429,8 +1425,7 @@ private: if ( d ) { if ( cache[pos].size() >= d ) { lr[group] = lr[group] * cache[pos][d-1]; - } - else { + } else { if ( cache[pos].size() == 0 ) { cache[pos].push_back(factors[pos] * factors[pos+1]); } @@ -1444,8 +1439,7 @@ private: } lr[group] = lr[group] * cache[pos].back(); } - } - else { + } else { lr[group] = lr[group] * factors[pos]; } } while ( i < n ); @@ -1456,8 +1450,7 @@ private: lr[1] = one; if ( n > 6 ) { split_cached(); - } - else { + } else { for ( size_t i=0; i(e) || is_a(e) ) { return e.map(*this); @@ -1843,8 +1831,7 @@ struct make_modular_map : public map_function { numeric n(R->retract(emod)); if ( n > halfmod ) { return n-mod; - } - else { + } else { return n; } } @@ -1937,8 +1924,7 @@ static vector multivar_diophant(const vector& a_, const ex& x, const ex& e = make_modular(buf, R); } } - } - else { + } else { upvec amod; for ( size_t i=0; i multivar_diophant(const vector& a_, const ex& x, const ex& if ( is_a(c) ) { nterms = c.nops(); z = c.op(0); - } - else { + } else { nterms = 1; z = c; } @@ -2090,10 +2075,9 @@ static ex hensel_multivar(const ex& a, const ex& x, const vector& I, res.append(U[i]); } return res; - } - else { + } else { lst res; - return lst(); + return lst{}; } } @@ -2267,7 +2251,7 @@ static ex factor_multivariate(const ex& poly, const exset& syms) ex vn = pp.collect(x).lcoeff(x); ex vnlst; if ( is_a(vn) ) { - vnlst = lst(vn); + vnlst = lst{vn}; } else { ex vnfactors = factor(vn); @@ -2325,8 +2309,7 @@ static ex factor_multivariate(const ex& poly, const exset& syms) for ( size_t i=1; i(ufaclst.op(i+1).lcoeff(x)); for ( int j=ftilde.size()-1; j>=0; --j ) { @@ -2441,7 +2423,7 @@ static ex factor_multivariate(const ex& poly, const exset& syms) // try Hensel lifting ex res = hensel_multivar(pp, x, epv, prime, l, modfactors, C); - if ( res != lst() ) { + if ( res != lst{} ) { ex result = cont * unit; for ( size_t i=0; i(e) ) { syms.insert(e); @@ -2486,8 +2468,7 @@ static ex factor_sqrfree(const ex& poly) int ld = poly.ldegree(x); ex res = factor_univariate(expand(poly/pow(x, ld)), x); return res * pow(x,ld); - } - else { + } else { ex res = factor_univariate(poly, x); return res; } @@ -2504,7 +2485,7 @@ static ex factor_sqrfree(const ex& poly) struct apply_factor_map : public map_function { unsigned options; apply_factor_map(unsigned options_) : options(options_) { } - ex operator()(const ex& e) + ex operator()(const ex& e) override { if ( e.info(info_flags::polynomial) ) { return factor(e, options); @@ -2514,13 +2495,10 @@ struct apply_factor_map : public map_function { for ( size_t i=0; i(base) ) { res *= t; - } - else { + } else { ex f = factor_sqrfree(base); res *= pow(f, t.op(1)); } - } - else if ( is_a(t) ) { + } else if ( is_a(t) ) { ex f = factor_sqrfree(t); res *= f; - } - else { + } else { res *= t; } }