! Copyright (C) 2008, 2009 Doug Coleman. ! See http://factorcode.org/license.txt for BSD license. USING: accessors arrays circular combinators combinators.short-circuit compiler.utilities fry grouping kernel make math math.order namespaces sequences sorting ; IN: splitting.monotonic : monotonic-split ( seq quot: ( obj1 obj2 -- ? ) -- newseq ) over empty? [ 2drop { } ] [ (monotonic-split) ] if ; inline swap ] dip '[ first2 _ _ boa ] map ; inline PRIVATE> : monotonic-slice ( seq quot: ( obj1 obj2 -- ? ) class -- slices ) pick length dup 1 > [ drop (monotonic-slice) ] [ zero? [ 2drop ] [ nip [ 0 1 ] 2dip boa 1array ] if ] if ; inline TUPLE: downward-slice < slice ; TUPLE: stable-slice < slice ; TUPLE: upward-slice < slice ; : downward-slices ( seq -- slices ) [ > ] downward-slice monotonic-slice [ length 1 > ] filter ; : stable-slices ( seq -- slices ) [ = ] stable-slice monotonic-slice [ length 1 > ] filter ; : upward-slices ( seq -- slices ) [ < ] upward-slice monotonic-slice [ length 1 > ] filter ; : trends ( seq -- slices ) dup length dup 1 > [ drop [ downward-slices ] [ stable-slices ] [ upward-slices ] tri 3append [ from>> ] sort-with ] [ zero? [ ] [ [ 0 1 ] dip stable-slice boa ] if ] if ;