summaryrefslogtreecommitdiff
path: root/src/pkg/math
AgeCommit message (Collapse)AuthorFilesLines
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer18-98/+98
rsc's algorithm - applied gofmt -w misc src - partial CL (last chunk) R=rsc, r http://go/go-review/1024041
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer18-78/+78
R=rsc, r http://go/go-review/1025029
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer5-27/+9
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
2009-11-05gofmt-ify math, expvar, exp/spacewarRobert Griesemer3-14/+12
R=rsc http://go/go-review/1018061
2009-10-15move math out of runtime.Russ Cox4-53/+137
a step toward enforcing package boundaries, necessary to eliminate global package name space. R=r DELTA=581 (310 added, 271 deleted, 0 changed) OCL=35805 CL=35823
2009-10-08more lgtm files from gofmtRuss Cox3-8/+8
R=gri OCL=35485 CL=35488
2009-10-06apply gofmt to malloc math once osRuss Cox17-249/+241
R=gri DELTA=566 (4 added, 14 deleted, 548 changed) OCL=35410 CL=35419
2009-09-24install assembly math.Sqrt on amd64Russ Cox3-1/+33
R=r DELTA=33 (32 added, 0 deleted, 1 changed) OCL=34983 CL=34986
2009-09-15more "declared and not used".Russ Cox2-2/+2
the last round omitted := range and only checked 1 out of N vars in a multi-var := R=r OCL=34624 CL=34638
2009-08-12convert low-level (used by testing) packages toRuss Cox15-112/+27
whole-package compilation. new Makefiles, tests now in separate package bytes flag fmt io math once os reflect strconv sync time utf8 delete import "xxx" in package xxx. inside package xxx, xxx is not declared anymore so s/xxx.//g delete file and package level forward declarations. note the new internal_test.go and sync and strconv to provide public access to internals during testing. the installed version of the package omits that file and thus does not open the internals to all clients. R=r OCL=33065 CL=33097
2009-08-10remove unnecessary pkg. referencesRuss Cox1-29/+29
R=r DELTA=95 (0 added, 0 deleted, 95 changed) OCL=33012 CL=33012
2009-07-28floating-point limits and equationsRuss Cox1-5/+11
R=r DELTA=13 (8 added, 2 deleted, 3 changed) OCL=32291 CL=32322
2009-07-28constants for integer limitsRob Pike1-0/+16
R=rsc DELTA=16 (16 added, 0 deleted, 0 changed) OCL=32288 CL=32288
2009-07-28constants for floating point limitsRob Pike1-0/+5
R=rsc DELTA=5 (5 added, 0 deleted, 0 changed) OCL=32283 CL=32287
2009-07-14fixed typoRobert Griesemer1-1/+1
TBR=r OCL=31647 CL=31647
2009-06-24style police: parens in if, for, switch, rangeRuss Cox2-3/+3
R=r DELTA=32 (0 added, 3 deleted, 29 changed) OCL=30718 CL=30725
2009-06-09mv src/lib to src/pkgRob Pike20-0/+1411
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102