Object/Class

ap.terfor.linearcombination

LinearCombination

Related Docs: class LinearCombination | package linearcombination

Permalink

object LinearCombination

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LinearCombination
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object CoeffTermWithOffset

    Permalink

    Extractor applying to LinearCombination that are just a single term with some coefficient and a constant offset.

    Extractor applying to LinearCombination that are just a single term with some coefficient and a constant offset.

  5. object Constant

    Permalink

    Extractor applying to LinearCombination that are constant.

    Extractor applying to LinearCombination that are constant.

  6. object Difference

    Permalink

    Extractor applying to LinearCombination that are the difference between two non-constant terms; with the term with positive coefficient coming first.

    Extractor applying to LinearCombination that are the difference between two non-constant terms; with the term with positive coefficient coming first.

  7. val MINUS_ONE: LinearCombination

    Permalink
  8. val ONE: LinearCombination

    Permalink
  9. object SingleTerm

    Permalink

    Extractor applying to LinearCombination that are just a single term with coefficient 1.

    Extractor applying to LinearCombination that are just a single term with coefficient 1.

  10. object TwoTermsWithOffset

    Permalink

    Extractor applying to LinearCombination that are sums of two terms with some coefficients and a constant offset.

    Extractor applying to LinearCombination that are sums of two terms with some coefficients and a constant offset.

  11. object ValueOrdering extends PartialOrdering[LinearCombination]

    Permalink

    Ordering that relates linear combinations a, b if the value of a is always going to be in relationship with b.

    Ordering that relates linear combinations a, b if the value of a is always going to be in relationship with b. E.g., x + 3 < x + 5 .

  12. val ZERO: LinearCombination

    Permalink
  13. def apply(c: IdealInt): LinearCombination

    Permalink
  14. def apply(coeff: IdealInt, t: Term, constant: IdealInt, order: TermOrder): LinearCombination

    Permalink
  15. def apply(coeff: IdealInt, t: Term, order: TermOrder): LinearCombination

    Permalink
  16. def apply(t: Term, order: TermOrder): LinearCombination

    Permalink
  17. def apply(terms: Iterable[(IdealInt, Term)], order: TermOrder): LinearCombination

    Permalink
  18. def apply(terms: Iterator[(IdealInt, Term)], order: TermOrder): LinearCombination

    Permalink

    Create a linear combination from an arbitrary set of terms with coefficients

  19. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  20. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  21. def createFromSortedSeq(terms: Iterator[(IdealInt, Term)], order: TermOrder): LinearCombination

    Permalink

    Create a linear combination from an array of coefficient-term pairs that is already sorted, flattened, and contracted.

  22. def createFromSortedSeq(terms: Seq[(IdealInt, Term)], order: TermOrder): LinearCombination

    Permalink

    Create a linear combination from an array of coefficient-term pairs that is already sorted, flattened, and contracted.

  23. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  26. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  27. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  28. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  31. def sum(coeff1: IdealInt, lc1: LinearCombination, coeff2: IdealInt, lc2: LinearCombination, coeff3: IdealInt, lc3: LinearCombination, order: TermOrder): LinearCombination

    Permalink

    Compute the sum of exactly three linear combinations with arbitrary coefficients

  32. def sum(coeff1: IdealInt, lc1: LinearCombination, coeff2: IdealInt, lc2: LinearCombination, order: TermOrder): LinearCombination

    Permalink

    Compute the sum of exactly two linear combinations with arbitrary coefficients.

    Compute the sum of exactly two linear combinations with arbitrary coefficients. This method is optimised and tries to avoid the the general case as far as possible

  33. def sum(lcs: Iterator[(IdealInt, LinearCombination)], order: TermOrder): LinearCombination

    Permalink
  34. def sum(lcs: Seq[(IdealInt, LinearCombination)], order: TermOrder): LinearCombination

    Permalink

    Compute the sum of a collection of linear combinations (together with coefficients).

    Compute the sum of a collection of linear combinations (together with coefficients). This method is more optimised than direct usage of LCBlender

  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  36. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  37. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped