case class Term(scalar: Const, vars: Vector[Var]) extends Expression with scala.Product with Serializable

Term is holding a coefficient and all variables which are involved in the product of the term.

scalar * (var_1 * ... * var_n)

Linear Supertypes
Serializable, Serializable, scala.Product, Equals, Expression, LazyLogging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Term
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Expression
  7. LazyLogging
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Term(scalar: Const, vars: Vector[Var])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def *(that: Expression): Expression
    Definition Classes
    TermExpression
  4. def +(that: Expression): Expression
    Definition Classes
    Expression
  5. def -(that: Expression): Expression
    Definition Classes
    Expression
  6. def :=(that: Expression): Constraint
    Definition Classes
    Expression
  7. def <:=(that: Expression): Constraint
    Definition Classes
    Expression
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def >:=(that: Expression): Constraint
    Definition Classes
    Expression
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  12. val constant: Double
    Definition Classes
    Expression
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(obj: Any): Boolean

    obj

    an object to compare

    returns

    true in case this object has identical constant and terms as the obj argument; false otherwise.

    Definition Classes
    Expression → AnyRef → Any
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def getOrder: ExpressionType
    Definition Classes
    Expression
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. lazy val logger: Logger
    Attributes
    protected
    Definition Classes
    LazyLogging
    Annotations
    @transient()
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. val scalar: Const
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. val terms: LongDoubleMap
    Definition Classes
    TermExpression
  25. def toString(): String
    Definition Classes
    TermExpression → AnyRef → Any
  26. def unary_-(): Expression
    Definition Classes
    TermExpression
  27. val vars: Vector[Var]
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from scala.Product

Inherited from Equals

Inherited from Expression

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped