racket/collects/math/tests
Neil Toronto f42cc6f14a Fixed major performance issue with matrix arithmetic; please merge to 5.3.2
The fix consists of three parts:

1. Rewriting `inline-matrix*'. The material change here is that the
   expansion now contains only direct applications of `+' and `*'.
   TR's optimizer replaces them with `unsafe-fx+' and `unsafe-fx*',
   which keeps intermediate flonum values from being boxed.

2. Making the types of all functions that operate on (Matrix Number)
   values more precise. Now TR can prove that matrix operations preserve
   inexactness. For example, matrix-conjugate : (Matrix Flonum) ->
   (Matrix Flonum) and three other cases for Real, Float-Complex, and
   Number.

3. Changing the return types of some functions that used to return
   things like (Matrix (U A 0)). Now that we worry about preserving
   inexactness, we can't have `matrix-upper-triangle' always return a
   matrix that contains exact zeros. It now accepts an optional `zero'
   argument of type A.
2013-01-21 22:04:04 -07:00
..
array-strictness-tests.rkt Made arrays strict by default; please merge to release 2013-01-15 13:53:28 -07:00
array-tests.rkt Made arrays strict by default; please merge to release 2013-01-15 13:53:28 -07:00
array-untyped-tests.rkt Made arrays strict by default; please merge to release 2013-01-15 13:53:28 -07:00
bigfloat-custodian.rkt ffi/unsafe/custodian: fix weak-reference problem 2012-12-11 09:30:15 -07:00
bigfloat-stress-test.rkt Split "mpfr.rkt" into "gmp.rkt" and "mpfr.rkt" 2012-12-03 22:45:31 -07:00
bigfloat-tests.rkt Added `array->list-array' 2012-12-06 22:52:22 -07:00
flonum-tests.rkt Precise flonum tests (error usually must be <= 0.5 ulp), and prerequisite 2012-12-27 17:30:04 -07:00
function-tests.rkt Initial math library commit. The history for these changes is preserved 2012-11-16 11:39:51 -07:00
mandelbrot-test.rkt Made arrays strict by default; please merge to release 2013-01-15 13:53:28 -07:00
matrix-strictness-tests.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
matrix-tests.rkt Added back partial pivoting to Gaussian elimination 2013-01-01 12:12:07 -07:00
matrix-untyped-tests.rkt `math/matrix' fixes; please merge to 5.3.2. 2013-01-16 16:40:43 -07:00
number-theory-tests.rkt Fixes for errors Pierpaolo Bernardi found by reviewing the docs; also, 2012-12-17 11:40:37 -07:00
statistics-tests.rkt Fixes, docs, and API changes for `math/statistics' 2012-12-10 16:45:18 -07:00
strictness-memory-leak-test.rkt Fixed memory leak in making arrays strict: doing so wouldn't clear 2012-12-02 22:21:28 -07:00
test-utils.rkt Reviewing and refactoring `math/matrix', part 1 2012-12-20 17:32:16 -07:00