mirror of
https://github.com/github/semantic.git
synced 2024-11-24 00:42:33 +03:00
🔥 the Step synonym.
This commit is contained in:
parent
b95c17bce6
commit
a599a903d7
@ -1,7 +1,6 @@
|
||||
{-# LANGUAGE GADTs, ImplicitParams, MultiParamTypeClasses, ScopedTypeVariables #-}
|
||||
module SES.Myers
|
||||
( EditScript
|
||||
, Step
|
||||
, Myers
|
||||
, EditGraph(..)
|
||||
, Distance(..)
|
||||
@ -23,9 +22,7 @@ import Prologue hiding (for, error)
|
||||
-- | An edit script, i.e. a sequence of changes/copies of elements.
|
||||
type EditScript a b = [These a b]
|
||||
|
||||
type Step a b = State (MyersState a b)
|
||||
|
||||
type Myers a b = (Step a b)
|
||||
type Myers a b = State (MyersState a b)
|
||||
|
||||
-- | Notionally the cartesian product of two sequences, represented as a simple wrapper around those arrays holding those sequences’ elements for O(1) lookups.
|
||||
data EditGraph a b = EditGraph { as :: !(Array.Array Int a), bs :: !(Array.Array Int b) }
|
||||
|
Loading…
Reference in New Issue
Block a user