summaryrefslogtreecommitdiff
path: root/test/hilbert.go
AgeCommit message (Collapse)AuthorFilesLines
2009-07-07fix testRobert Griesemer1-2/+2
R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=31270 CL=31272
2009-01-20delete exportRuss Cox1-7/+7
TBR=r OCL=23121 CL=23127
2009-01-16convert tests; nothing interesting.Russ Cox1-7/+7
R=r OCL=23012 CL=23014
2009-01-15printf->Printf etc.Rob Pike1-5/+5
the raw fmt routines will be another, smaller but subtler pass. R=rsc DELTA=157 (0 added, 0 deleted, 157 changed) OCL=22851 CL=22851
2009-01-06new new & makeRuss Cox1-2/+2
R=r OCL=22166 CL=22166
2008-12-30allow slices (open arrays) to beKen Thompson1-17/+4
receivers in methods. put back original code for hilbert/bignum R=r OCL=21910 CL=21920
2008-12-20hilbert now runs.Rob Pike1-4/+16
it's 25% faster and runs with 40% less memory allocation than before R=rsc DELTA=20 (15 added, 0 deleted, 5 changed) OCL=21690 CL=21690
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-1/+1
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-12-18convert *[] to [].Russ Cox1-1/+1
R=r OCL=21563 CL=21571
2008-11-06A recreational programming exercise:Robert Griesemer1-0/+167
Multiplication of a Hilbert matrix with its inverse using Bignum.Rationals as a test case for rational arithmetic. R=r OCL=18706 CL=18706