/* * piecewise.cpp - Piecewise function class * * Copyright 2007 Michael Sloan * Copyright 2007 JF Barraud * * This library is free software; you can redistribute it and/or * modify it either under the terms of the GNU Lesser General Public * License version 2.1 as published by the Free Software Foundation * (the "LGPL") or, at your option, under the terms of the Mozilla * Public License Version 1.1 (the "MPL"). If you do not alter this * notice, a recipient may use your version of this file under either * the MPL or the LGPL. * * You should have received a copy of the LGPL along with this library * in the file COPYING-LGPL-2.1; if not, output to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * You should have received a copy of the MPL along with this library * in the file COPYING-MPL-1.1 * * The contents of this file are subject to the Mozilla Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY * OF ANY KIND, either express or implied. See the LGPL or the MPL for * the specific language governing rights and limitations. * */ #include <2geom/piecewise.h> #include #include namespace Geom { Piecewise divide(Piecewise const &a, Piecewise const &b, unsigned k) { Piecewise pa = partition(a, b.cuts), pb = partition(b, a.cuts); Piecewise ret = Piecewise(); assert(pa.size() == pb.size()); ret.cuts = pa.cuts; for (unsigned i = 0; i < pa.size(); i++) ret.push_seg(divide(pa[i], pb[i], k)); return ret; } Piecewise divide(Piecewise const &a, Piecewise const &b, double tol, unsigned k, double zero) { Piecewise pa = partition(a, b.cuts), pb = partition(b, a.cuts); Piecewise ret = Piecewise(); assert(pa.size() == pb.size()); for (unsigned i = 0; i < pa.size(); i++){ Piecewise divi = divide(pa[i], pb[i], tol, k, zero); divi.setDomain(Interval(pa.cuts[i],pa.cuts[i+1])); ret.concat(divi); } return ret; } Piecewise divide(Piecewise const &a, SBasis const &b, double tol, unsigned k, double zero){ return divide(a,Piecewise(b),tol,k,zero); } Piecewise divide(SBasis const &a, Piecewise const &b, double tol, unsigned k, double zero){ return divide(Piecewise(a),b,tol,k,zero); } Piecewise divide(SBasis const &a, SBasis const &b, double tol, unsigned k, double zero) { if (b.tailError(0)<2*zero){ //TODO: have a better look at sgn(b). double sgn= (b(.5)<0.)?-1.:1; return Piecewise(Linear(sgn/zero)*a); } if (fabs(b.at0())>zero && fabs(b.at1())>zero ){ SBasis c,r=a; //TODO: what is a good relative tol? atm, c=a/b +/- (tol/a)%... k+=1; r.resize(k, Linear(0,0)); c.resize(k, Linear(0,0)); //assert(b.at0()!=0 && b.at1()!=0); for (unsigned i=0; i(c); } Piecewise c0,c1; c0 = divide(compose(a,Linear(0.,.5)),compose(b,Linear(0.,.5)),tol,k); c1 = divide(compose(a,Linear(.5,1.)),compose(b,Linear(.5,1.)),tol,k); c0.setDomain(Interval(0.,.5)); c1.setDomain(Interval(.5,1.)); c0.concat(c1); return c0; } //-- compose(pw,SBasis) --------------- /* the purpose of the following functions is only to reduce the code in piecewise.h TODO: use a vector > instead of a map. */ std::map compose_pullback(std::vector const &values, SBasis const &g){ std::map result; std::vector > roots = multi_roots(g, values); for(unsigned i=0; ivalues[i])) i++; result[0.]=i; } if(result.count(1.)==0){ unsigned i=0; while (ivalues[i])) i++; result[1.]=i; } return(result); } int compose_findSegIdx(std::map::iterator const &cut, std::map::iterator const &next, std::vector const &levels, SBasis const &g){ double t0=(*cut).first; unsigned idx0=(*cut).second; double t1=(*next).first; unsigned idx1=(*next).second; assert(t0 levels[idx0]) { //g([t0,t1]) is a 'bump' over level idx0, idx=idx0; } else { //g([t0,t1]) is contained in level idx0!... idx = (idx0==levels.size())? idx0-1:idx0; } //move idx back from levels f.cuts idx+=1; return idx; } Piecewise pw_compose_inverse(SBasis const &f, SBasis const &g, unsigned order, double zero){ Piecewise result; assert( f.size()>0 && g.size()>0); SBasis g01 = g; bool flip = ( g01.at0() > g01.at1() ); //OptInterval g_range = bounds_exact(g); OptInterval g_range( Interval( g.at0(), g.at1() )); g01 -= g_range->min(); g01 /= g_range->extent(); if ( flip ){ g01 *= -1.; g01 += 1.; } #if 1 assert( std::abs( g01.at0() - 0. ) < zero ); assert( std::abs( g01.at1() - 1. ) < zero ); //g[0][0] = 0.; //g[0][1] = 1.; #endif SBasis foginv = compose_inverse( f, g01, order, zero ); SBasis err = compose( foginv, g01) - f; if ( err.tailError(0) < zero ){ result = Piecewise (foginv); }else{ SBasis g_portion = portion( g01, Interval(0.,.5) ); SBasis f_portion = portion( f, Interval(0.,.5) ); result = pw_compose_inverse(f_portion, g_portion, order, zero); g_portion = portion( g01, Interval(.5, 1.) ); f_portion = portion( f, Interval(.5, 1.) ); Piecewise result_next; result_next = pw_compose_inverse(f_portion, g_portion, order, zero); result.concat( result_next ); } if (flip) { result = reverse(result); } result.setDomain(*g_range); return result; } std::vector roots(Piecewise const &f){ std::vector result; for (unsigned i=0; i rts=roots(f.segs[i]); for (unsigned r=0; r > multi_roots(Piecewise const &f, std::vector const &values) { std::vector > result(values.size()); for (unsigned i=0; i > rts = multi_roots(f.segs[i], values); for(unsigned j=0; j level_set(Piecewise const &f, Interval const &level, double tol){ std::vector result; for (unsigned i=0; i resulti = level_set( f[i], level, 0., 1., tol); for (unsigned j=0; j level_set(Piecewise const &f, double v, double vtol, double tol){ Interval level ( v-vtol, v+vtol ); return level_set( f, level, tol); } } /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :