remove inexact imaginary numbers

pull/3/head
Matthew Butterick 3 years ago
parent 319547fbd1
commit 2b5974ad27

@ -52,8 +52,9 @@
(describe 6.0221313f23)
(describe (exact->inexact (! 40)))
(describe (sqrt 10))
(describe (sqrt -10))
(describe (+ (sqrt 10) (sqrt -10)))
;; no good in Racket CS, for whatever reason
;;(describe (sqrt -10))
;;(describe (+ (sqrt 10) (sqrt -10)))
;;; Strings

@ -14,7 +14,7 @@
This library provides functions to describe Racket objects. Currently, the following types of objects are described:
@margin-note{This is not the official version of Describe. It is the 1.5 version from PLaneT, retooled to use Racket's current package system, and with bigfloats disabled (because of incompatibility with v.5.3) and extflonums disabled (because of incompatibility with Racket CS). The canonical version of Describe is on the @link["http://planet.racket-lang.org/display.ss?package=describe.plt&owner=williams" "PLaneT server"]. — MB}
@margin-note{This is not the official version of Describe. It is the 1.5 version from PLaneT, retooled to use Racket's current package system, but with bigfloats disabled (because of incompatibility with v.5.3) and extflonums disabled (because of incompatibility with Racket CS). Under Racket CS, I've also found that complex numbers with inexact coefficients for the imaginary part also seem to crash. So maybe stay away from those. The canonical version of Describe is on the @link["http://planet.racket-lang.org/display.ss?package=describe.plt&owner=williams" "PLaneT server"]. — MB}
@itemize{
@item{Booleans}

Loading…
Cancel
Save