From b8fb48d723394058a384466fd4367f50fb17da63 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Thu, 12 Nov 2015 16:10:19 -0500 Subject: [PATCH] Remove `min`. --- prototype/Doubt/SES.swift | 4 ---- 1 file changed, 4 deletions(-) diff --git a/prototype/Doubt/SES.swift b/prototype/Doubt/SES.swift index 51eb036c7..c8012e203 100644 --- a/prototype/Doubt/SES.swift +++ b/prototype/Doubt/SES.swift @@ -15,10 +15,6 @@ public func SES(a: C, _ b: C, cost: Free(a: A, _ rest: A..., _ isLessThan: (A, A) -> Bool) -> A { - return rest.reduce(a, combine: { isLessThan($0, $1) ? $0 : $1 }) - } - // A matrix whose values are streams representing paths through the edit graph, carrying both the diff & the cost of the remainder of the path. var matrix: Matrix, C.Index>! matrix = Matrix(across: a.startIndex..