Packages

object Expr extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Expr
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Add (lhs: Expr, rhs: Expr) extends AddOrSubExpr with Product with Serializable
    Annotations
    @SerialVersionUID()
  2. sealed abstract class AddOrSubExpr extends BinaryExpr
    Annotations
    @SerialVersionUID()
  3. sealed abstract class BinaryExpr extends Expr

    Binary expressions contain 2 child expression.

  4. sealed abstract class Constant [A] extends Expr

    Constant expressions are leaf nodes, contains literal numbers.

  5. case class ConstantBigDecimal (value: BigDecimal) extends Constant[BigDecimal] with Product with Serializable
    Annotations
    @SerialVersionUID()
  6. case class ConstantDouble (value: Double) extends Constant[Double] with Product with Serializable
    Annotations
    @SerialVersionUID()
  7. case class ConstantLong (value: Long) extends Constant[Long] with Product with Serializable
    Annotations
    @SerialVersionUID()
  8. case class ConstantRational (value: Rational) extends Constant[Rational] with Product with Serializable
    Annotations
    @SerialVersionUID()
  9. case class ConstantRoot (poly: Polynomial[BigInt], i: Int, lb: Rational, ub: Rational) extends Constant[Polynomial[BigInt]] with Product with Serializable
    Annotations
    @SerialVersionUID()
  10. case class Div (lhs: Expr, rhs: Expr) extends BinaryExpr with Product with Serializable
    Annotations
    @SerialVersionUID()
  11. final class Flags extends AnyVal

    A set of flags for algebraic expressions, so we can quickly determine some properties, like whether the expression is rational, radical, what types of leaf nodes it has, etc.

    A set of flags for algebraic expressions, so we can quickly determine some properties, like whether the expression is rational, radical, what types of leaf nodes it has, etc. This is used to help guide algorithmic choices, such as what separation bound to use.

  12. case class KRoot (sub: Expr, k: Int) extends UnaryExpr with Product with Serializable
    Annotations
    @SerialVersionUID()
  13. case class Mul (lhs: Expr, rhs: Expr) extends BinaryExpr with Product with Serializable
    Annotations
    @SerialVersionUID()
  14. case class Neg (sub: Expr) extends UnaryExpr with Product with Serializable
    Annotations
    @SerialVersionUID()
  15. case class Pow (sub: Expr, k: Int) extends UnaryExpr with Product with Serializable
    Annotations
    @SerialVersionUID()
  16. case class Sub (lhs: Expr, rhs: Expr) extends AddOrSubExpr with Product with Serializable
    Annotations
    @SerialVersionUID()
  17. sealed abstract class UnaryExpr extends Expr

    Unary expressions contain only a single child expression.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. object Flags

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped