EditDistance

object EditDistance extends EditDistance
Companion:
class
class Object
trait Matchable
class Any

Type members

Inherited classlikes

case class Add[T](t: T) extends EditDistanceOperation[T]
Inherited from:
EditDistance
case class Del[T](t: T) extends EditDistanceOperation[T]
Inherited from:
EditDistance
sealed trait EditDistanceOperation[T]
Inherited from:
EditDistance
class EditMatrix[T](s1: IndexedSeq[T], s2: IndexedSeq[T], costs: EditDistanceCosts[T])

Edit matrix for 2 given sequences

Edit matrix for 2 given sequences

Inherited from:
EditDistance
case class Same[T](t: T) extends EditDistanceOperation[T]
Inherited from:
EditDistance
case class Subst[T](t: T, t2: T) extends EditDistanceOperation[T]
Inherited from:
EditDistance

Value members

Inherited methods

def levenhsteinDistance[T : Equiv](s1: IndexedSeq[T], s2: IndexedSeq[T]): IndexedSeq[EditDistanceOperation[T]]
Inherited from:
EditDistance