From 2e79b4ac22321abd69c7f1a9748b5761abaab1ec Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 22 Jan 2020 10:48:21 +0100 Subject: Added micro optimisation when sorting frame == 2 and less reverse rotate when frame == full stack, norming --- src/push_swap/push_swap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/push_swap/push_swap.h') diff --git a/src/push_swap/push_swap.h b/src/push_swap/push_swap.h index 0bffca5..87443a1 100644 --- a/src/push_swap/push_swap.h +++ b/src/push_swap/push_swap.h @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/19 09:10:11 by cacharle #+# #+# */ -/* Updated: 2020/01/22 08:59:59 by cacharle ### ########.fr */ +/* Updated: 2020/01/22 10:42:44 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -20,7 +20,7 @@ ** sort.c */ -void push_swap_sort(t_stack *main, t_stack *tmp); +void push_swap_qsort(t_stack *main, t_stack *tmp); /* ** stack_wrapper.c -- cgit