Packages

case class Real(hi: Double, lo: Double = 0.0) extends Fractional[Real] with Ordered[Real] with Product with Serializable

The Real class provides higher precision floating point numbers using the Double Double technique, which supports 106 bits of precision. ----------------------------------------------------------------------------- Code adapted from DoubleDouble.java:

hi

the high portion of the real number

lo

the low portion of the real number

See also

oai.cwi.nl/oai/asset/9159/9159A.pdf -----------------------------------------------------------------------------

http://tsusiatsoftware.net/dd/main.html

Linear Supertypes
Product, Equals, Ordered[Real], Comparable[Real], Fractional[Real], Numeric[Real], Ordering[Real], PartialOrdering[Real], Equiv[Real], Serializable, Serializable, Comparator[Real], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Real
  2. Product
  3. Equals
  4. Ordered
  5. Comparable
  6. Fractional
  7. Numeric
  8. Ordering
  9. PartialOrdering
  10. Equiv
  11. Serializable
  12. Serializable
  13. Comparator
  14. AnyRef
  15. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Real(hi: Double, lo: Double = 0.0)

    hi

    the high portion of the real number

    lo

    the low portion of the real number

Type Members

  1. class FractionalOps extends scala.math.Fractional.Ops
    Definition Classes
    Fractional
  2. class Ops extends AnyRef
    Definition Classes
    Numeric

Value Members

  1. def !=~(y: Real): Boolean

    Return whether two real numbers are not nearly equal.

    Return whether two real numbers are not nearly equal.

    y

    the compare 'this' with y

  2. def %(x: Real): Real

    Compute the remainder of the 'this' divided by 'x', i.e., 'this mod x'.

    Compute the remainder of the 'this' divided by 'x', i.e., 'this mod x'.

    x

    the modulus

  3. def *(y: Real): Real

    Multiply two real numbers.

    Multiply two real numbers.

    y

    multiply this times y

  4. def +(y: Real): Real

    Add two real numbers.

    Add two real numbers.

    y

    add real y to this

  5. def -(y: Real): Real

    Subtract two real numbers.

    Subtract two real numbers.

    y

    subtract y from this

  6. def /(y: Real): Real

    Divide two real numbers.

    Divide two real numbers.

    y

    divide this by y

  7. def <(that: Real): Boolean
    Definition Classes
    Ordered
  8. def <=(that: Real): Boolean
    Definition Classes
    Ordered
  9. def =~(y: Real): Boolean

    Return whether two real numbers are nearly equal.

    Return whether two real numbers are nearly equal.

    y

    the compare 'this' with y

  10. def >(that: Real): Boolean
    Definition Classes
    Ordered
  11. def >=(that: Real): Boolean
    Definition Classes
    Ordered
  12. def abs: Real

    Return the absolute value of 'this' real number.

  13. def abs(x: Real): Real
    Definition Classes
    Numeric
  14. def ceil: Real

    Return the 'ceil'ing (integer above) of 'this' real number.

  15. def compare(y: Real): Int

    Compare 'this' real number with that real number 'y'.

    Compare 'this' real number with that real number 'y'.

    y

    that real number

    Definition Classes
    Real → Ordered
  16. def compare(x: Real, y: Real): Int

    Compare two real numbers (negative for <, zero for ==, positive for >).

    Compare two real numbers (negative for <, zero for ==, positive for >).

    x

    the first real number to compare

    y

    the second real number to compare

    Definition Classes
    Real → Ordering → Comparator
  17. def compareTo(that: Real): Int
    Definition Classes
    Ordered → Comparable
  18. def div(x: Real, y: Real): Real
    Definition Classes
    Real → Fractional
  19. def equals(x: Any): Boolean

    Override equals to determine whether 'this' real number equals real 'y'.

    Override equals to determine whether 'this' real number equals real 'y'.

    Definition Classes
    Real → Equals → Comparator → AnyRef → Any
  20. def equiv(x: Real, y: Real): Boolean
    Definition Classes
    Ordering → PartialOrdering → Equiv
  21. def floor: Real

    Return the floor (integer below) of 'this' real number.

  22. def fromInt(x: Int): Real

    Create a real number from an Int.

    Create a real number from an Int.

    Definition Classes
    Real → Numeric
  23. def fromLong(x: Long): Real

    Create a real number from an Long.

  24. def gt(x: Real, y: Real): Boolean
    Definition Classes
    Ordering → PartialOrdering
  25. def gteq(x: Real, y: Real): Boolean
    Definition Classes
    Ordering → PartialOrdering
  26. def hashCode(): Int

    Must also override hashCode to be be compatible with equals.

    Must also override hashCode to be be compatible with equals.

    Definition Classes
    Real → AnyRef → Any
  27. val hi: Double
  28. def in(set: Set[Real]): Boolean

    Determine whether 'this' is in the given set.

  29. def in(lim: (Real, Real)): Boolean

    Determine whether 'this' is within the given bounds

    Determine whether 'this' is within the given bounds

    lim

    the given (lower, upper) bounds

  30. def isInfinity: Boolean

    Determine whether 'this' number "is Infinite".

  31. def isNaN: Boolean

    Determine whether 'this' number "is Not a Number".

  32. val lo: Double
  33. def lt(x: Real, y: Real): Boolean
    Definition Classes
    Ordering → PartialOrdering
  34. def lteq(x: Real, y: Real): Boolean
    Definition Classes
    Ordering → PartialOrdering
  35. def max(y: Real): Real

    Return the maximum of 'this' and that real numbers.

    Return the maximum of 'this' and that real numbers.

    y

    that real number to compare with this

  36. def max(x: Real, y: Real): Real
    Definition Classes
    Ordering
  37. def min(y: Real): Real

    Return the minimum of 'this' and that real numbers.

    Return the minimum of 'this' and that real numbers.

    y

    that real number to compare with this

  38. def min(x: Real, y: Real): Real
    Definition Classes
    Ordering
  39. def minus(x: Real, y: Real): Real
    Definition Classes
    Real → Numeric
  40. implicit def mkNumericOps(lhs: Real): FractionalOps
    Definition Classes
    Fractional → Numeric
  41. implicit def mkOrderingOps(lhs: Real): Real.Ops
    Definition Classes
    Ordering
  42. def near_eq(x: Real, y: Real): Boolean
  43. def negate(x: Real): Real
    Definition Classes
    Real → Numeric
  44. def not_in(set: Set[Real]): Boolean

    Determine whether 'this' is not in the given set.

  45. def not_in(lim: (Real, Real)): Boolean

    Determine whether 'this' is not within the given bounds

    Determine whether 'this' is not within the given bounds

    lim

    the given (lower, upper) bounds

  46. def on[U](f: (U) ⇒ Real): Ordering[U]
    Definition Classes
    Ordering
  47. def one: Real
    Definition Classes
    Numeric
  48. def plus(x: Real, y: Real): Real
    Definition Classes
    Real → Numeric
  49. def pow(x: Real, y: Real): Real
  50. def pow(x: Real, k: Int): Real
  51. def rem(x: Real, y: Real): Real
  52. def reverse: Ordering[Real]
    Definition Classes
    Ordering → PartialOrdering
  53. def reversed(): Comparator[Real]
    Definition Classes
    Comparator
  54. def round: Long

    Return the 'round'ed (closest) integer to 'this' real number.

  55. def signum: Real

    Return the signum of 'this' real number, 1, 0, -1 for >0, =0, <0.

  56. def signum(x: Real): Int
    Definition Classes
    Numeric
  57. def thenComparing[U <: Comparable[_ >: U]](arg0: Function[_ >: Real, _ <: U]): Comparator[Real]
    Definition Classes
    Comparator
  58. def thenComparing[U](arg0: Function[_ >: Real, _ <: U], arg1: Comparator[_ >: U]): Comparator[Real]
    Definition Classes
    Comparator
  59. def thenComparing(arg0: Comparator[_ >: Real]): Comparator[Real]
    Definition Classes
    Comparator
  60. def thenComparingDouble(arg0: ToDoubleFunction[_ >: Real]): Comparator[Real]
    Definition Classes
    Comparator
  61. def thenComparingInt(arg0: ToIntFunction[_ >: Real]): Comparator[Real]
    Definition Classes
    Comparator
  62. def thenComparingLong(arg0: ToLongFunction[_ >: Real]): Comparator[Real]
    Definition Classes
    Comparator
  63. def times(x: Real, y: Real): Real
    Definition Classes
    Real → Numeric
  64. def toDouble: Double
  65. def toDouble(x: Real): Double

    Convert that/'this' real number to a Double.

    Convert that/'this' real number to a Double.

    x

    that real number to convert

    Definition Classes
    Real → Numeric
  66. def toFloat: Float
  67. def toFloat(x: Real): Float

    Convert that/'this' real number to a Float.

    Convert that/'this' real number to a Float.

    x

    that real number to convert

    Definition Classes
    Real → Numeric
  68. def toInt: Int
  69. def toInt(x: Real): Int

    Convert that/'this' real number to an Int.

    Convert that/'this' real number to an Int.

    x

    that real number to convert

    Definition Classes
    Real → Numeric
  70. def toLong: Long
  71. def toLong(x: Real): Long

    Convert 'this' real number to a Long.

    Convert 'this' real number to a Long.

    x

    that real number to convert

    Definition Classes
    Real → Numeric
  72. def toReal: Real
  73. def toReal(x: Real): Real

    Convert that/'this' real number to a Real.

    Convert that/'this' real number to a Real.

    x

    that real number to convert

  74. def toString(): String

    Convert 'this' real number to a String in standard form "dd.dd".

    Convert 'this' real number to a String in standard form "dd.dd". FIX: add support for scientific notation

    Definition Classes
    Real → AnyRef → Any
  75. def toString2: String

    Convert 'this' real number to a String of the form "(hi, lo)".

  76. def tryCompare(x: Real, y: Real): Some[Int]
    Definition Classes
    Ordering → PartialOrdering
  77. def unary_-(): Real

    Compute the unary minus (-).

  78. val val1: Double

    General alias for the parts of a real number

  79. val val2: Double

    General alias for the parts of a real number

  80. def zero: Real
    Definition Classes
    Numeric
  81. def ~^(y: Real): Real

    Raise a real number to the 'k'-th power.

    Raise a real number to the 'k'-th power.

    y

    the power/exponent (as a Real)

  82. def ~^(k: Int): Real

    Raise a real number to the 'k'-th power.

    Raise a real number to the 'k'-th power.

    k

    the power/exponent (as a Int)

  83. def (y: Real): Real
  84. def (set: Set[Real]): Boolean
  85. def (lim: (Real, Real)): Boolean
  86. def (set: Set[Real]): Boolean
  87. def (lim: (Real, Real)): Boolean
  88. def (y: Real): Boolean
  89. def (y: Real): Boolean
  90. def (y: Real): Boolean

    Compare 'this' real number with that real number 'y' for inequality.

    Compare 'this' real number with that real number 'y' for inequality.

    y

    that real number

  91. def (y: Real): Boolean

    Compare 'this' real number with that real number 'y' for less than or equal to.

    Compare 'this' real number with that real number 'y' for less than or equal to.

    y

    that real number

  92. def (y: Real): Boolean

    Compare 'this' real number with that real number 'y' for greater than or equal to.

    Compare 'this' real number with that real number 'y' for greater than or equal to.

    y

    that real number