diffson.lcs
Members list
Type members
Classlikes
Implementation of the LCS using dynamic programming.
Implementation of the LCS using dynamic programming.
Attributes
- Source:
- DynamicProgLcs.scala
- Graph
- Supertypes
Attributes
- Companion:
- class
- Source:
- HashedLcs.scala
- Graph
- Supertypes
- Self type
- Hashed.type
Wraps provided value together with its hashCode. Equals is overridden to first check hashCode and then delegate to the wrapped value.
Wraps provided value together with its hashCode. Equals is overridden to first check hashCode and then delegate to the wrapped value.
Attributes
- value
wrapped value
- Companion:
- object
- Source:
- HashedLcs.scala
- Graph
- Supertypes
Speeds up LCS computations by pre-computing hashes for all objects. Very useful for objects that recompute hashCodes on each invocation.
Speeds up LCS computations by pre-computing hashes for all objects. Very useful for objects that recompute hashCodes on each invocation.
Attributes
- delegate
Decorated LCS implementation.
- Source:
- HashedLcs.scala
- Graph
- Supertypes
The interface to classes that computes the longest common subsequence between two sequences of elements
The interface to classes that computes the longest common subsequence between two sequences of elements
Attributes
- Source:
- Lcs.scala
- Graph
- Supertypes
- Known subtypes
Implementation of the patience algorithm [1] to compute the longest common subsequence
Implementation of the patience algorithm [1] to compute the longest common subsequence
Attributes
- withFallback
whether to fallback to classic LCS when patience could not find the LCS
- Source:
- Patience.scala
- Graph
- Supertypes