From 048bd0740e978f8174ec773607d2abb6fd8e10c4 Mon Sep 17 00:00:00 2001 From: zzzzrrr Date: Mon, 16 Nov 2009 13:27:38 -0500 Subject: [PATCH] fixed merge sort --- python/framework/triangulator.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/framework/triangulator.pyx b/python/framework/triangulator.pyx index ce1bac7..efc7001 100644 --- a/python/framework/triangulator.pyx +++ b/python/framework/triangulator.pyx @@ -153,7 +153,7 @@ cdef list merge_sort(list l): lright = merge_sort(l[len(l)/2:]) p1, p2, p = 0, 0, 0 while p1