From d4c23b4cce91ae8cfcf1bda6b577ff50c55abe3c Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sun, 9 Apr 2017 19:41:15 -0400 Subject: - Added delimited continuations, with static shifting. --- stdlib/test/test/lux/function/cont.lux | 108 +++++++++++++++++++++------------ 1 file changed, 69 insertions(+), 39 deletions(-) (limited to 'stdlib/test') diff --git a/stdlib/test/test/lux/function/cont.lux b/stdlib/test/test/lux/function/cont.lux index 97058c22f..6404ed2ac 100644 --- a/stdlib/test/test/lux/function/cont.lux +++ b/stdlib/test/test/lux/function/cont.lux @@ -5,48 +5,78 @@ (data [text "Text/" Monoid] text/format [number] - [product]) + [product] + (coll [list])) (function ["&" cont]) ["R" math/random]) lux/test) (test: "Continuations" [sample R;nat - #let [(^open "&/") &;Monad]] - ($_ seq - (assert "Can run continuations to compute their values." - (n.= sample (&;run (&/wrap sample)))) - - (assert "Can use functor." - (n.= (n.inc sample) (&;run (&/map n.inc (&/wrap sample))))) - - (assert "Can use applicative." - (n.= (n.inc sample) (&;run (&/apply (&/wrap n.inc) (&/wrap sample))))) - - (assert "Can use monad." - (n.= (n.inc sample) (&;run (do &;Monad - [func (wrap n.inc) - arg (wrap sample)] - (wrap (func arg)))))) - - (assert "Can use the current-continuation as a escape hatch." - (n.= (n.* +2 sample) - (&;run (do &;Monad - [value (&;call/cc - (lambda [k] - (do @ - [temp (k sample)] - ## If this code where to run, - ## the output would be - ## (n.* +4 sample) - (k temp))))] - (wrap (n.* +2 value)))))) - - (assert "Can use the current-continuation to build a time machine." - (n.= (n.+ +100 sample) - (&;run (do &;Monad - [[restart [output idx]] (&;portal [sample +0])] - (if (n.< +10 idx) - (restart [(n.+ +10 output) (n.inc idx)]) - (wrap output)))))) - )) + #let [(^open "&/") &;Monad] + elems (R;list +3 R;nat)] + (let% [ (do-template [ ] + [(assert + (let [(^open "&/") &;Monad + (^open "L/") (list;Eq number;Eq) + visit (: (-> (List Nat) (&;Cont (List Nat) (List Nat))) + (lambda visit [xs] + (case xs + #;Nil + (&/wrap #;Nil) + + (#;Cons x xs') + (do &;Monad + [output ( (lambda [k] + (do &;Monad + [tail (k xs')] + (wrap (#;Cons x tail)))))] + (visit output)))))] + (L/= ( elems) + (&;run (&;reset (visit elems)))) + ))] + + ["Can use delimited continuations with static shifting." + &;static id] + ## ["Can use delimited continuations with dynamic shifting." + ## &;dynamic list;reverse] + )] + ($_ seq + (assert "Can run continuations to compute their values." + (n.= sample (&;run (&/wrap sample)))) + + (assert "Can use functor." + (n.= (n.inc sample) (&;run (&/map n.inc (&/wrap sample))))) + + (assert "Can use applicative." + (n.= (n.inc sample) (&;run (&/apply (&/wrap n.inc) (&/wrap sample))))) + + (assert "Can use monad." + (n.= (n.inc sample) (&;run (do &;Monad + [func (wrap n.inc) + arg (wrap sample)] + (wrap (func arg)))))) + + (assert "Can use the current-continuation as a escape hatch." + (n.= (n.* +2 sample) + (&;run (do &;Monad + [value (&;call/cc + (lambda [k] + (do @ + [temp (k sample)] + ## If this code where to run, + ## the output would be + ## (n.* +4 sample) + (k temp))))] + (wrap (n.* +2 value)))))) + + (assert "Can use the current-continuation to build a time machine." + (n.= (n.+ +100 sample) + (&;run (do &;Monad + [[restart [output idx]] (&;portal [sample +0])] + (if (n.< +10 idx) + (restart [(n.+ +10 output) (n.inc idx)]) + (wrap output)))))) + + + ))) -- cgit v1.2.3