Changeset 984
- Timestamp:
- Sep 27, 2011, 1:20:50 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.gitignore
r945 r984 60 60 test/quad 61 61 test/sandbox 62 test/math/pi 62 63 tools/make-font 63 64 # Our data -
trunk/configure.ac
r981 r984 323 323 src/Makefile 324 324 test/Makefile 325 test/math/Makefile 325 326 gfx/Makefile 326 327 gfx/font/Makefile -
trunk/src/real.h
r983 r984 24 24 class real 25 25 { 26 static int const BIGITS = 32;27 28 26 public: 29 27 inline real() { } … … 61 59 62 60 private: 61 /* XXX: changing this requires tuning real::fres (the number of 62 * Newton-Raphson iterations) and real::print (the number of printed 63 * digits) */ 64 static int const BIGITS = 32; 65 63 66 uint32_t m_size; 64 67 uint32_t m_signexp; -
trunk/test/Makefile.am
r978 r984 1 2 SUBDIRS = math 1 3 2 4 AM_CPPFLAGS = -I$(top_srcdir)/src
Note: See TracChangeset
for help on using the changeset viewer.