about summary refs log tree commit diff
path: root/src/test/stdtest/math.rs
AgeCommit message (Collapse)AuthorLines
2011-12-14Moved std::math to std::coreStefan Plantikow-1/+1
- merges math and float into core::float - Splits core::ctypes into core::ctypes and core::mtypes - cmath is not exported - stdtest::math passes
2011-12-14std: export math_f* as math::f* submods and use tailcalls in std::mathStefan Plantikow-0/+3
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-2/+4
2011-11-24Comment-out some math tests that produce different results on win32Brian Anderson-7/+9
2011-11-24std: math: renaming and documentation fixesStefan Plantikow-1/+2
2011-11-24std: factored f32 and f64 out from mathStefan Plantikow-2/+4
2011-11-24std: added missing calls to math; covers C95 completely now, includes testsStefan Plantikow-9/+225
2011-11-24std: rewrote math to support most C95 libmath calls on f32, f64 and floatStefan Plantikow-6/+6
2011-11-21Ignore test_log_functions test for nowMarijn Haverbeke-0/+1
It fails under valgrind
2011-11-21Added logarithm functions for floats to std::mathStefan Plantikow-0/+39
Thanks to marijn for helping with #[link_name]
2011-10-18Add a math module to the standard libMarijn Haverbeke-0/+34
I need some rudimentary stdlib stuff for the tutorial. Closes #1042