Packages

object IndexedBacktrace

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

Type Members

  1. type DistBoundMap = Map[(Int, Int), Double]

    known upper bounds on distances, typically only those below a maximum value

  2. type IndexMatch = (Set[(Int, Int)], Vector[Int], Vector[Int])

    matching of indices for complementary distances, corresponds to (pairs, umatchedInFirst, unmatchedInSecond)

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. def allMatches(indices1: Vector[Int], indices2: Vector[Int], permitted: (Int) => (Int) => Boolean): Vector[IndexMatch]

    all matches of indices satisfying a condition, typically having a good enough distance bount

    all matches of indices satisfying a condition, typically having a good enough distance bount

    indices1

    first collection of indices

    indices2

    second collection of indices

    permitted

    condition for matching

    returns

    vector of index matches

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def bestBoundMap(v: Vector[((Int, Int), Double)]): DistBoundMap

    map of upper bounds, best from the data

    map of upper bounds, best from the data

    v

    vector of upper bounds

    returns

    map of best upper bounds

  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. def distancesAreImproved(newDist: DistBoundMap, oldDist: DistBoundMap, resolution: Double): Boolean

    checks whether a new distance is significantly better than an old one

    checks whether a new distance is significantly better than an old one

    newDist

    a possibly improved distance bound

    oldDist

    the original distance

    resolution

    additive scale for comparison

    returns

    boolean giving whether improvement is significant

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def stableDistance(baseDistance: DistBoundMap, refine: (DistBoundMap) => DistBoundMap, resolution: Double): DistBoundMap

    refine distance till there is no significant improvement

    refine distance till there is no significant improvement

    baseDistance

    initial distance

    refine

    map giving way to refine

    resolution

    additive scale for comparison

    returns

    refined upper bound on distances

    Annotations
    @tailrec()
  18. def symmetrizedBoundMap(v: Vector[((Int, Int), Double)]): DistBoundMap

    upper bounds refined by using symmetry

    upper bounds refined by using symmetry

    v

    vector of upper bounds

    returns

    symmetric map of upper bounds

  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. def triangleInequalityBounds(m: DistBoundMap): DistBoundMap

    upper bounds refined using the triangle

    upper bounds refined using the triangle

    m

    given upper bounds

    returns

    map of deduced upper bounds

  22. def triangleStableDistance(baseDistance: DistBoundMap, maxDistance: Double, resolution: Double): DistBoundMap

    refine distances using the triangle inequality with pruning

    refine distances using the triangle inequality with pruning

    baseDistance

    initial distance bounds

    maxDistance

    maximum distance bound - larger bounds than these are ignored

    resolution

    additive scale for comparison

    returns

    refined upper bound map

  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

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

Inherited from AnyRef

Inherited from Any

Ungrouped