Negative doubles or floats in Haskell (macports)

2019-01-28 04:33发布

Why do I get a segmentation fault when I try to show a negative double or float? There is no problem for negative integers.

Prelude> let a = 4
Prelude> :t a
a :: Integer
Prelude> let b = -4
Prelude> b
-4
Prelude> :t b
b :: Integer
Prelude> let c = 5.6
Prelude> :t c
c :: Double
Prelude> let d = -5.6
Prelude> :t d
d :: Double
Prelude> show d
"-Segmentation fault

I tried it various ways, it seems that the number is correctly understood but not shown. Version info:

ghci --version
The Glorious Glasgow Haskell Compilation System, version 6.10.4

4条回答
Rolldiameter
2楼-- · 2019-01-28 05:13

GHC on MacPorts seems to be broken. See https://trac.macports.org/ticket/25265

Consider instead installing the Haskell Platform from haskell.org, which includes GHC 6.12.3 and a bundle of Haskelly goodies.

查看更多
欢心
3楼-- · 2019-01-28 05:22

Works for me on 6.12.3. Could be a bug in that version.

查看更多
Luminary・发光体
4楼-- · 2019-01-28 05:30

March 2011: This is fixed in the GHC 7 release of the Haskell Platform, where both 32 bit and 64 bit Mac native ports are in fine condition.

查看更多
Explosion°爆炸
5楼-- · 2019-01-28 05:31

The most important thing you should realise is that segmentation faults should never occur in Haskell. Its type system ensures that nothing like that "goes wrong" at runtime. If you do see a segmentation fault then either there is a bug in your Haskell compiler or you're interfacing to C code with the Haskell FFI and something has gone wrong with your C code. In pure Haskell code, however, you should never see this.

查看更多
登录 后发表回答