How to Install and Uninstall ghc-scientific Package on openSUSE Leap

Last updated: May 15,2024

1. Install "ghc-scientific" package

Please follow the guidance below to install ghc-scientific on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install ghc-scientific

2. Uninstall "ghc-scientific" package

Here is a brief guide to show you how to uninstall ghc-scientific on openSUSE Leap:

$ sudo zypper remove ghc-scientific

3. Information about the ghc-scientific package on openSUSE Leap

Information for package ghc-scientific:
---------------------------------------
Repository : Update repository with updates from SUSE Linux Enterprise 15
Name : ghc-scientific
Version : 0.3.7.0-150500.3.3.2
Arch : x86_64
Vendor : SUSE LLC
Installed Size : 367.7 KiB
Installed : No
Status : not installed
Source package : ghc-scientific-0.3.7.0-150500.3.3.2.src
Upstream URL : https://hackage.haskell.org/package/scientific
Summary : Numbers represented using scientific notation
Description :
"Data.Scientific" provides the number type 'Scientific'. Scientific numbers are
arbitrary precision and space efficient. They are represented using
.
The implementation uses a coefficient 'c :: 'Integer'' and a base-10 exponent
'e :: 'Int''. A scientific number corresponds to the 'Fractional' number:
''fromInteger' c * 10 '^^' e'.
Note that since we're using an 'Int' to represent the exponent these numbers
aren't truly arbitrary precision. I intend to change the type of the exponent
to 'Integer' in a future release.
The main application of 'Scientific' is to be used as the target of parsing
arbitrary precision numbers coming from an untrusted source. The advantages
over using 'Rational' for this are that:
* A 'Scientific' is more efficient to construct. Rational numbers need to be
constructed using '%' which has to compute the 'gcd' of the 'numerator' and
'denominator'.
* 'Scientific' is safe against numbers with huge exponents. For example:
'1e1000000000 :: 'Rational'' will fill up all space and crash your program.
Scientific works as expected:
>>> read "1e1000000000" :: Scientific 1.0e1000000000
* Also, the space usage of converting scientific numbers with huge exponents to
''Integral's' (like: 'Int') or ''RealFloat's' (like: 'Double' or 'Float') will
always be bounded by the target type.

5. The same packages on other Linux Distributions