2008-07-18 15:18:07 -06:00
|
|
|
// $G $D/$F.go && $L $F.$A && ./$A.out
|
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Power series package
|
|
|
|
// A power series is a channel, along which flow rational
|
|
|
|
// coefficients. A denominator of zero signifies the end.
|
|
|
|
// Original code in Newsqueak by Doug McIlroy.
|
|
|
|
// See Squinting at Power Series by Doug McIlroy,
|
|
|
|
// http://www.cs.bell-labs.com/who/rsc/thread/squint.pdf
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2009-05-08 16:21:41 -06:00
|
|
|
import "os"
|
|
|
|
|
2008-07-18 15:18:07 -06:00
|
|
|
type rat struct {
|
|
|
|
num, den int64; // numerator, denominator
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func (u rat) pr() {
|
2008-08-11 23:07:49 -06:00
|
|
|
if u.den==1 { print(u.num) }
|
|
|
|
else { print(u.num, "/", u.den) }
|
2008-07-18 15:18:07 -06:00
|
|
|
print(" ")
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func (u rat) eq(c rat) bool {
|
2008-07-18 15:18:07 -06:00
|
|
|
return u.num == c.num && u.den == c.den
|
|
|
|
}
|
|
|
|
|
|
|
|
type dch struct {
|
2008-12-19 04:05:37 -07:00
|
|
|
req chan int;
|
2009-02-06 16:03:14 -07:00
|
|
|
dat chan rat;
|
2008-07-18 15:18:07 -06:00
|
|
|
nam int;
|
|
|
|
}
|
|
|
|
|
|
|
|
type dch2 [2] *dch
|
|
|
|
|
|
|
|
var chnames string
|
|
|
|
var chnameserial int
|
|
|
|
var seqno int
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func Init();
|
2008-07-18 15:18:07 -06:00
|
|
|
|
|
|
|
func mkdch() *dch {
|
|
|
|
c := chnameserial % len(chnames);
|
|
|
|
chnameserial++;
|
2009-01-06 16:19:02 -07:00
|
|
|
d := new(dch);
|
|
|
|
d.req = make(chan int);
|
2009-02-06 16:03:14 -07:00
|
|
|
d.dat = make(chan rat);
|
2008-07-18 15:18:07 -06:00
|
|
|
d.nam = c;
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
func mkdch2() *dch2 {
|
2009-01-06 16:19:02 -07:00
|
|
|
d2 := new(dch2);
|
2008-07-18 15:18:07 -06:00
|
|
|
d2[0] = mkdch();
|
|
|
|
d2[1] = mkdch();
|
|
|
|
return d2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// split reads a single demand channel and replicates its
|
|
|
|
// output onto two, which may be read at different rates.
|
2009-02-06 16:03:14 -07:00
|
|
|
// A process is created at first demand for a rat and dies
|
|
|
|
// after the rat has been sent to both outputs.
|
2008-07-18 15:18:07 -06:00
|
|
|
|
|
|
|
// When multiple generations of split exist, the newest
|
|
|
|
// will service requests on one channel, which is
|
|
|
|
// always renamed to be out[0]; the oldest will service
|
|
|
|
// requests on the other channel, out[1]. All generations but the
|
|
|
|
// newest hold queued data that has already been sent to
|
|
|
|
// out[0]. When data has finally been sent to out[1],
|
|
|
|
// a signal on the release-wait channel tells the next newer
|
|
|
|
// generation to begin servicing out[1].
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func dosplit(in *dch, out *dch2, wait chan int ) {
|
2008-07-18 15:18:07 -06:00
|
|
|
var t *dch;
|
|
|
|
both := false; // do not service both channels
|
2008-07-28 13:03:56 -06:00
|
|
|
|
2008-07-18 15:18:07 -06:00
|
|
|
select {
|
|
|
|
case <-out[0].req:
|
|
|
|
;
|
|
|
|
case <-wait:
|
2008-07-28 13:03:56 -06:00
|
|
|
both = true;
|
2008-07-18 15:18:07 -06:00
|
|
|
select {
|
|
|
|
case <-out[0].req:
|
|
|
|
;
|
|
|
|
case <-out[1].req:
|
|
|
|
t=out[0]; out[0]=out[1]; out[1]=t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
seqno++;
|
2008-09-16 20:33:40 -06:00
|
|
|
in.req <- seqno;
|
2009-01-06 16:19:02 -07:00
|
|
|
release := make(chan int);
|
2008-07-18 15:18:07 -06:00
|
|
|
go dosplit(in, out, release);
|
|
|
|
dat := <-in.dat;
|
2008-09-16 20:33:40 -06:00
|
|
|
out[0].dat <- dat;
|
2008-07-18 15:18:07 -06:00
|
|
|
if !both {
|
|
|
|
<-wait
|
|
|
|
}
|
|
|
|
<-out[1].req;
|
2008-09-16 20:33:40 -06:00
|
|
|
out[1].dat <- dat;
|
|
|
|
release <- 0;
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func split(in *dch, out *dch2) {
|
2009-01-06 16:19:02 -07:00
|
|
|
release := make(chan int);
|
2008-07-18 15:18:07 -06:00
|
|
|
go dosplit(in, out, release);
|
2008-09-16 20:33:40 -06:00
|
|
|
release <- 0;
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func put(dat rat, out *dch) {
|
2008-07-18 15:18:07 -06:00
|
|
|
<-out.req;
|
2008-09-16 20:33:40 -06:00
|
|
|
out.dat <- dat;
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func get(in *dch) rat {
|
2008-07-18 15:18:07 -06:00
|
|
|
seqno++;
|
2008-09-16 20:33:40 -06:00
|
|
|
in.req <- seqno;
|
2008-07-18 15:18:07 -06:00
|
|
|
return <-in.dat;
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
// Get one rat from each of n demand channels
|
2008-07-18 15:18:07 -06:00
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func getn(in []*dch) []rat {
|
|
|
|
n := len(in);
|
2008-08-11 23:07:49 -06:00
|
|
|
if n != 2 { panic("bad n in getn") };
|
2009-01-06 16:19:02 -07:00
|
|
|
req := new([2] chan int);
|
2009-02-06 16:03:14 -07:00
|
|
|
dat := new([2] chan rat);
|
|
|
|
out := make([]rat, 2);
|
2008-07-18 15:18:07 -06:00
|
|
|
var i int;
|
2009-02-06 16:03:14 -07:00
|
|
|
var it rat;
|
2008-07-18 15:18:07 -06:00
|
|
|
for i=0; i<n; i++ {
|
|
|
|
req[i] = in[i].req;
|
|
|
|
dat[i] = nil;
|
|
|
|
}
|
|
|
|
for n=2*n; n>0; n-- {
|
2008-10-07 13:31:31 -06:00
|
|
|
seqno++;
|
2008-07-28 13:03:56 -06:00
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
select {
|
2008-09-16 20:33:40 -06:00
|
|
|
case req[0] <- seqno:
|
2008-07-28 13:03:56 -06:00
|
|
|
dat[0] = in[0].dat;
|
|
|
|
req[0] = nil;
|
2008-09-16 20:33:40 -06:00
|
|
|
case req[1] <- seqno:
|
2008-07-28 13:03:56 -06:00
|
|
|
dat[1] = in[1].dat;
|
|
|
|
req[1] = nil;
|
2008-09-16 20:33:40 -06:00
|
|
|
case it = <-dat[0]:
|
2008-07-28 13:03:56 -06:00
|
|
|
out[0] = it;
|
|
|
|
dat[0] = nil;
|
2008-09-16 20:33:40 -06:00
|
|
|
case it = <-dat[1]:
|
2008-07-28 13:03:56 -06:00
|
|
|
out[1] = it;
|
|
|
|
dat[1] = nil;
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
// Get one rat from each of 2 demand channels
|
2008-07-18 15:18:07 -06:00
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func get2(in0 *dch, in1 *dch) []rat {
|
2009-03-03 09:39:12 -07:00
|
|
|
return getn([]*dch{in0, in1});
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func copy(in *dch, out *dch) {
|
2008-07-18 15:18:07 -06:00
|
|
|
for {
|
|
|
|
<-out.req;
|
2008-09-16 20:33:40 -06:00
|
|
|
out.dat <- get(in);
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func repeat(dat rat, out *dch) {
|
2008-07-18 15:18:07 -06:00
|
|
|
for {
|
|
|
|
put(dat, out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type PS *dch; // power series
|
|
|
|
type PS2 *[2] PS; // pair of power series
|
2008-07-18 15:18:07 -06:00
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
var Ones PS
|
|
|
|
var Twos PS
|
2008-07-18 15:18:07 -06:00
|
|
|
|
|
|
|
func mkPS() *dch {
|
|
|
|
return mkdch()
|
|
|
|
}
|
|
|
|
|
|
|
|
func mkPS2() *dch2 {
|
|
|
|
return mkdch2()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Conventions
|
|
|
|
// Upper-case for power series.
|
|
|
|
// Lower-case for rationals.
|
|
|
|
// Input variables: U,V,...
|
|
|
|
// Output variables: ...,Y,Z
|
|
|
|
|
|
|
|
// Integer gcd; needed for rational arithmetic
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func gcd (u, v int64) int64 {
|
2008-07-18 15:18:07 -06:00
|
|
|
if u < 0 { return gcd(-u, v) }
|
|
|
|
if u == 0 { return v }
|
|
|
|
return gcd(v%u, u)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make a rational from two ints and from one int
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func i2tor(u, v int64) rat {
|
2008-07-18 15:18:07 -06:00
|
|
|
g := gcd(u,v);
|
2009-02-06 16:03:14 -07:00
|
|
|
var r rat;
|
2008-07-18 15:18:07 -06:00
|
|
|
if v > 0 {
|
|
|
|
r.num = u/g;
|
|
|
|
r.den = v/g;
|
|
|
|
} else {
|
|
|
|
r.num = -u/g;
|
|
|
|
r.den = -v/g;
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func itor(u int64) rat {
|
2008-07-18 15:18:07 -06:00
|
|
|
return i2tor(u, 1);
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
var zero rat;
|
|
|
|
var one rat;
|
2008-07-18 15:18:07 -06:00
|
|
|
|
|
|
|
|
|
|
|
// End mark and end test
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
var finis rat;
|
2008-07-18 15:18:07 -06:00
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func end(u rat) int64 {
|
2008-07-18 15:18:07 -06:00
|
|
|
if u.den==0 { return 1 }
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Operations on rationals
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func add(u, v rat) rat {
|
2008-07-18 15:18:07 -06:00
|
|
|
g := gcd(u.den,v.den);
|
|
|
|
return i2tor(u.num*(v.den/g)+v.num*(u.den/g),u.den*(v.den/g));
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func mul(u, v rat) rat {
|
2008-07-18 15:18:07 -06:00
|
|
|
g1 := gcd(u.num,v.den);
|
|
|
|
g2 := gcd(u.den,v.num);
|
2009-02-06 16:03:14 -07:00
|
|
|
var r rat;
|
|
|
|
r.num = (u.num/g1)*(v.num/g2);
|
2008-07-18 15:18:07 -06:00
|
|
|
r.den = (u.den/g2)*(v.den/g1);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func neg(u rat) rat {
|
2008-07-18 15:18:07 -06:00
|
|
|
return i2tor(-u.num, u.den);
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func sub(u, v rat) rat {
|
2008-07-18 15:18:07 -06:00
|
|
|
return add(u, neg(v));
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func inv(u rat) rat { // invert a rat
|
2008-08-11 23:07:49 -06:00
|
|
|
if u.num == 0 { panic("zero divide in inv") }
|
2008-07-18 15:18:07 -06:00
|
|
|
return i2tor(u.den, u.num);
|
|
|
|
}
|
|
|
|
|
2008-07-20 21:13:07 -06:00
|
|
|
// print eval in floating point of PS at x=c to n terms
|
2009-02-06 16:03:14 -07:00
|
|
|
func evaln(c rat, U PS, n int)
|
2008-07-20 21:13:07 -06:00
|
|
|
{
|
|
|
|
xn := float64(1);
|
|
|
|
x := float64(c.num)/float64(c.den);
|
|
|
|
val := float64(0);
|
|
|
|
for i:=0; i<n; i++ {
|
|
|
|
u := get(U);
|
|
|
|
if end(u) != 0 {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
val = val + x * float64(u.num)/float64(u.den);
|
|
|
|
xn = xn*x;
|
|
|
|
}
|
2008-08-11 23:07:49 -06:00
|
|
|
print(val, "\n");
|
2008-07-20 21:13:07 -06:00
|
|
|
}
|
2008-07-18 15:18:07 -06:00
|
|
|
|
2008-07-20 21:13:07 -06:00
|
|
|
// Print n terms of a power series
|
2009-02-06 16:03:14 -07:00
|
|
|
func printn(U PS, n int) {
|
2008-07-18 15:18:07 -06:00
|
|
|
done := false;
|
|
|
|
for ; !done && n>0; n-- {
|
|
|
|
u := get(U);
|
|
|
|
if end(u) != 0 { done = true }
|
|
|
|
else { u.pr() }
|
|
|
|
}
|
2008-08-11 23:07:49 -06:00
|
|
|
print(("\n"));
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Evaluate n terms of power series U at x=c
|
2009-02-06 16:03:14 -07:00
|
|
|
func eval(c rat, U PS, n int) rat {
|
2008-07-18 15:18:07 -06:00
|
|
|
if n==0 { return zero }
|
|
|
|
y := get(U);
|
|
|
|
if end(y) != 0 { return zero }
|
|
|
|
return add(y,mul(c,eval(c,U,n-1)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Power-series constructors return channels on which power
|
|
|
|
// series flow. They start an encapsulated generator that
|
|
|
|
// puts the terms of the series on the channel.
|
|
|
|
|
|
|
|
// Make a pair of power series identical to a given power series
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Split(U PS) *dch2 {
|
2008-07-18 15:18:07 -06:00
|
|
|
UU := mkdch2();
|
|
|
|
go split(U,UU);
|
|
|
|
return UU;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add two power series
|
2009-02-06 16:03:14 -07:00
|
|
|
func Add(U, V PS) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z := mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
|
|
|
var uv []rat;
|
2008-07-18 15:18:07 -06:00
|
|
|
for {
|
|
|
|
<-Z.req;
|
|
|
|
uv = get2(U,V);
|
|
|
|
switch end(uv[0])+2*end(uv[1]) {
|
|
|
|
case 0:
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- add(uv[0], uv[1]);
|
2008-07-18 15:18:07 -06:00
|
|
|
case 1:
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- uv[1];
|
2008-07-18 15:18:07 -06:00
|
|
|
copy(V,Z);
|
|
|
|
case 2:
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- uv[0];
|
2008-10-07 13:31:31 -06:00
|
|
|
copy(U,Z);
|
2008-07-18 15:18:07 -06:00
|
|
|
case 3:
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- finis;
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
|
|
|
}
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Multiply a power series by a constant
|
2009-02-06 16:03:14 -07:00
|
|
|
func Cmul(c rat,U PS) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z := mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
2008-07-18 15:18:07 -06:00
|
|
|
done := false;
|
|
|
|
for !done {
|
|
|
|
<-Z.req;
|
|
|
|
u := get(U);
|
|
|
|
if end(u) != 0 { done = true }
|
2008-09-16 20:33:40 -06:00
|
|
|
else { Z.dat <- mul(c,u) }
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- finis;
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Subtract
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Sub(U, V PS) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
return Add(U, Cmul(neg(one), V));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Multiply a power series by the monomial x^n
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Monmul(U PS, n int) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z := mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
2008-07-18 15:18:07 -06:00
|
|
|
for ; n>0; n-- { put(zero,Z) }
|
|
|
|
copy(U,Z);
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Multiply by x
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Xmul(U PS) PS {
|
2008-09-11 16:48:42 -06:00
|
|
|
return Monmul(U,1);
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Rep(c rat) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z := mkPS();
|
|
|
|
go repeat(c,Z);
|
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Monomial c*x^n
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Mon(c rat, n int) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z:=mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
2008-07-18 15:18:07 -06:00
|
|
|
if(c.num!=0) {
|
|
|
|
for ; n>0; n=n-1 { put(zero,Z) }
|
|
|
|
put(c,Z);
|
|
|
|
}
|
|
|
|
put(finis,Z);
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Shift(c rat, U PS) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z := mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
2008-07-18 15:18:07 -06:00
|
|
|
put(c,Z);
|
|
|
|
copy(U,Z);
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// simple pole at 1: 1/(1-x) = 1 1 1 1 1 ...
|
|
|
|
|
|
|
|
// Convert array of coefficients, constant term first
|
|
|
|
// to a (finite) power series
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
/*
|
|
|
|
func Poly(a []rat) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z:=mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
begin func(a []rat, Z PS) {
|
2008-07-18 15:18:07 -06:00
|
|
|
j:=0;
|
|
|
|
done:=0;
|
2008-10-04 23:11:26 -06:00
|
|
|
for j=len(a); !done&&j>0; j=j-1)
|
2008-07-18 15:18:07 -06:00
|
|
|
if(a[j-1].num!=0) done=1;
|
|
|
|
i:=0;
|
|
|
|
for(; i<j; i=i+1) put(a[i],Z);
|
|
|
|
put(finis,Z);
|
|
|
|
}();
|
|
|
|
return Z;
|
|
|
|
}
|
2008-08-27 18:28:30 -06:00
|
|
|
*/
|
2008-07-18 15:18:07 -06:00
|
|
|
|
|
|
|
// Multiply. The algorithm is
|
|
|
|
// let U = u + x*UU
|
|
|
|
// let V = v + x*VV
|
|
|
|
// then UV = u*v + x*(u*VV+v*UU) + x*x*UU*VV
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Mul(U, V PS) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z:=mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
2008-07-18 15:18:07 -06:00
|
|
|
<-Z.req;
|
|
|
|
uv := get2(U,V);
|
|
|
|
if end(uv[0])!=0 || end(uv[1]) != 0 {
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- finis;
|
2008-07-18 15:18:07 -06:00
|
|
|
} else {
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- mul(uv[0],uv[1]);
|
2008-07-18 15:18:07 -06:00
|
|
|
UU := Split(U);
|
|
|
|
VV := Split(V);
|
|
|
|
W := Add(Cmul(uv[0],VV[0]),Cmul(uv[1],UU[0]));
|
|
|
|
<-Z.req;
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- get(W);
|
2008-07-18 15:18:07 -06:00
|
|
|
copy(Add(W,Mul(UU[1],VV[1])),Z);
|
|
|
|
}
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Differentiate
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Diff(U PS) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z:=mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
2008-07-18 15:18:07 -06:00
|
|
|
<-Z.req;
|
|
|
|
u := get(U);
|
|
|
|
if end(u) == 0 {
|
|
|
|
done:=false;
|
|
|
|
for i:=1; !done; i++ {
|
|
|
|
u = get(U);
|
|
|
|
if end(u) != 0 { done=true }
|
|
|
|
else {
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- mul(itor(int64(i)),u);
|
2008-07-18 15:18:07 -06:00
|
|
|
<-Z.req;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- finis;
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Integrate, with const of integration
|
2009-02-06 16:03:14 -07:00
|
|
|
func Integ(c rat,U PS) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z:=mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
2008-07-18 15:18:07 -06:00
|
|
|
put(c,Z);
|
|
|
|
done:=false;
|
|
|
|
for i:=1; !done; i++ {
|
|
|
|
<-Z.req;
|
|
|
|
u := get(U);
|
|
|
|
if end(u) != 0 { done= true }
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- mul(i2tor(1,int64(i)),u);
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- finis;
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Binomial theorem (1+x)^c
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Binom(c rat) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z:=mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
2008-07-18 15:18:07 -06:00
|
|
|
n := 1;
|
|
|
|
t := itor(1);
|
|
|
|
for c.num!=0 {
|
|
|
|
put(t,Z);
|
|
|
|
t = mul(mul(t,c),i2tor(1,int64(n)));
|
|
|
|
c = sub(c,one);
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
put(finis,Z);
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reciprocal of a power series
|
|
|
|
// let U = u + x*UU
|
|
|
|
// let Z = z + x*ZZ
|
|
|
|
// (u+x*UU)*(z+x*ZZ) = 1
|
|
|
|
// z = 1/u
|
|
|
|
// u*ZZ + z*UU +x*UU*ZZ = 0
|
|
|
|
// ZZ = -UU*(z+x*ZZ)/u;
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Recip(U PS) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z:=mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
2008-07-18 15:18:07 -06:00
|
|
|
ZZ:=mkPS2();
|
|
|
|
<-Z.req;
|
|
|
|
z := inv(get(U));
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- z;
|
2008-07-18 15:18:07 -06:00
|
|
|
split(Mul(Cmul(neg(z),U),Shift(z,ZZ[0])),ZZ);
|
|
|
|
copy(ZZ[1],Z);
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exponential of a power series with constant term 0
|
|
|
|
// (nonzero constant term would make nonrational coefficients)
|
|
|
|
// bug: the constant term is simply ignored
|
|
|
|
// Z = exp(U)
|
|
|
|
// DZ = Z*DU
|
|
|
|
// integrate to get Z
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func Exp(U PS) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
ZZ := mkPS2();
|
|
|
|
split(Integ(one,Mul(ZZ[0],Diff(U))),ZZ);
|
|
|
|
return ZZ[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Substitute V for x in U, where the leading term of V is zero
|
|
|
|
// let U = u + x*UU
|
|
|
|
// let V = v + x*VV
|
|
|
|
// then S(U,V) = u + VV*S(V,UU)
|
|
|
|
// bug: a nonzero constant term is ignored
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func Subst(U, V PS) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z:= mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
2008-07-18 15:18:07 -06:00
|
|
|
VV := Split(V);
|
|
|
|
<-Z.req;
|
|
|
|
u := get(U);
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- u;
|
2008-07-18 15:18:07 -06:00
|
|
|
if end(u) == 0 {
|
|
|
|
if end(get(VV[0])) != 0 { put(finis,Z); }
|
|
|
|
else { copy(Mul(VV[0],Subst(U,VV[1])),Z); }
|
|
|
|
}
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Monomial Substition: U(c x^n)
|
|
|
|
// Each Ui is multiplied by c^i and followed by n-1 zeros
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func MonSubst(U PS, c0 rat, n int) PS {
|
2008-07-18 15:18:07 -06:00
|
|
|
Z:= mkPS();
|
2009-02-06 16:03:14 -07:00
|
|
|
go func() {
|
2008-07-18 15:18:07 -06:00
|
|
|
c := one;
|
|
|
|
for {
|
|
|
|
<-Z.req;
|
|
|
|
u := get(U);
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- mul(u, c);
|
2008-07-18 15:18:07 -06:00
|
|
|
c = mul(c, c0);
|
|
|
|
if end(u) != 0 {
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- finis;
|
2008-07-18 15:18:07 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
for i := 1; i < n; i++ {
|
|
|
|
<-Z.req;
|
2008-09-16 20:33:40 -06:00
|
|
|
Z.dat <- zero;
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
|
|
|
}
|
2009-02-06 16:03:14 -07:00
|
|
|
}();
|
2008-07-18 15:18:07 -06:00
|
|
|
return Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func Init() {
|
2008-07-18 15:18:07 -06:00
|
|
|
chnameserial = -1;
|
|
|
|
seqno = 0;
|
|
|
|
chnames = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
|
|
|
|
zero = itor(0);
|
|
|
|
one = itor(1);
|
|
|
|
finis = i2tor(1,0);
|
|
|
|
Ones = Rep(one);
|
|
|
|
Twos = Rep(itor(2));
|
|
|
|
}
|
|
|
|
|
2009-02-06 16:03:14 -07:00
|
|
|
func check(U PS, c rat, count int, str string) {
|
2008-07-18 15:18:07 -06:00
|
|
|
for i := 0; i < count; i++ {
|
2008-10-07 13:31:31 -06:00
|
|
|
r := get(U);
|
2008-07-18 15:18:07 -06:00
|
|
|
if !r.eq(c) {
|
2008-08-11 23:07:49 -06:00
|
|
|
print("got: ");
|
2008-07-18 15:18:07 -06:00
|
|
|
r.pr();
|
2008-08-11 23:07:49 -06:00
|
|
|
print("should get ");
|
2008-07-18 15:18:07 -06:00
|
|
|
c.pr();
|
2008-08-11 23:07:49 -06:00
|
|
|
print("\n");
|
|
|
|
panic(str)
|
2008-07-18 15:18:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
const N=10
|
2009-02-06 16:03:14 -07:00
|
|
|
func checka(U PS, a []rat, str string) {
|
2008-08-05 09:20:34 -06:00
|
|
|
for i := 0; i < N; i++ {
|
2008-07-18 15:18:07 -06:00
|
|
|
check(U, a[i], 1, str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
Init();
|
2009-05-08 16:21:41 -06:00
|
|
|
if len(os.Args) > 1 { // print
|
2009-02-06 16:03:14 -07:00
|
|
|
print("Ones: "); printn(Ones, 10);
|
|
|
|
print("Twos: "); printn(Twos, 10);
|
|
|
|
print("Add: "); printn(Add(Ones, Twos), 10);
|
|
|
|
print("Diff: "); printn(Diff(Ones), 10);
|
|
|
|
print("Integ: "); printn(Integ(zero, Ones), 10);
|
|
|
|
print("CMul: "); printn(Cmul(neg(one), Ones), 10);
|
|
|
|
print("Sub: "); printn(Sub(Ones, Twos), 10);
|
|
|
|
print("Mul: "); printn(Mul(Ones, Ones), 10);
|
|
|
|
print("Exp: "); printn(Exp(Ones), 15);
|
|
|
|
print("MonSubst: "); printn(MonSubst(Ones, neg(one), 2), 10);
|
|
|
|
print("ATan: "); printn(Integ(zero, MonSubst(Ones, neg(one), 2)), 10);
|
2008-07-18 15:18:07 -06:00
|
|
|
} else { // test
|
|
|
|
check(Ones, one, 5, "Ones");
|
|
|
|
check(Add(Ones, Ones), itor(2), 0, "Add Ones Ones"); // 1 1 1 1 1
|
|
|
|
check(Add(Ones, Twos), itor(3), 0, "Add Ones Twos"); // 3 3 3 3 3
|
2009-02-06 16:03:14 -07:00
|
|
|
a := make([]rat, N);
|
2008-07-18 15:18:07 -06:00
|
|
|
d := Diff(Ones);
|
|
|
|
for i:=0; i < N; i++ {
|
|
|
|
a[i] = itor(int64(i+1))
|
|
|
|
}
|
|
|
|
checka(d, a, "Diff"); // 1 2 3 4 5
|
|
|
|
in := Integ(zero, Ones);
|
|
|
|
a[0] = zero; // integration constant
|
|
|
|
for i:=1; i < N; i++ {
|
|
|
|
a[i] = i2tor(1, int64(i))
|
|
|
|
}
|
|
|
|
checka(in, a, "Integ"); // 0 1 1/2 1/3 1/4 1/5
|
|
|
|
check(Cmul(neg(one), Twos), itor(-2), 10, "CMul"); // -1 -1 -1 -1 -1
|
|
|
|
check(Sub(Ones, Twos), itor(-1), 0, "Sub Ones Twos"); // -1 -1 -1 -1 -1
|
2008-10-07 13:31:31 -06:00
|
|
|
m := Mul(Ones, Ones);
|
2008-07-18 15:18:07 -06:00
|
|
|
for i:=0; i < N; i++ {
|
|
|
|
a[i] = itor(int64(i+1))
|
|
|
|
}
|
|
|
|
checka(m, a, "Mul"); // 1 2 3 4 5
|
|
|
|
e := Exp(Ones);
|
|
|
|
a[0] = itor(1);
|
|
|
|
a[1] = itor(1);
|
|
|
|
a[2] = i2tor(3,2);
|
|
|
|
a[3] = i2tor(13,6);
|
|
|
|
a[4] = i2tor(73,24);
|
|
|
|
a[5] = i2tor(167,40);
|
|
|
|
a[6] = i2tor(4051,720);
|
|
|
|
a[7] = i2tor(37633,5040);
|
|
|
|
a[8] = i2tor(43817,4480);
|
|
|
|
a[9] = i2tor(4596553,362880);
|
|
|
|
checka(e, a, "Exp"); // 1 1 3/2 13/6 73/24
|
|
|
|
at := Integ(zero, MonSubst(Ones, neg(one), 2));
|
|
|
|
for c, i := 1, 0; i < N; i++ {
|
|
|
|
if i%2 == 0 {
|
|
|
|
a[i] = zero
|
|
|
|
} else {
|
|
|
|
a[i] = i2tor(int64(c), int64(i));
|
|
|
|
c *= -1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
checka(at, a, "ATan"); // 0 -1 0 -1/3 0 -1/5
|
|
|
|
/*
|
|
|
|
t := Revert(Integ(zero, MonSubst(Ones, neg(one), 2)));
|
|
|
|
a[0] = zero;
|
|
|
|
a[1] = itor(1);
|
|
|
|
a[2] = zero;
|
|
|
|
a[3] = i2tor(1,3);
|
|
|
|
a[4] = zero;
|
|
|
|
a[5] = i2tor(2,15);
|
|
|
|
a[6] = zero;
|
|
|
|
a[7] = i2tor(17,315);
|
|
|
|
a[8] = zero;
|
|
|
|
a[9] = i2tor(62,2835);
|
|
|
|
checka(t, a, "Tan"); // 0 1 0 1/3 0 2/15
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|