aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2018-06-28 13:33:17 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2018-06-28 13:33:17 +0900
commit19417af3ccd9a09229c372d5c0380ef0f83049b8 (patch)
treed20702064186a27bba91271ac2119eb3afea4c7e
parent4f656fd196e58ef935900717444962cb26a05d2e (diff)
Use amb operator
-rw-r--r--info.rkt2
-rw-r--r--main.rkt55
2 files changed, 30 insertions, 27 deletions
diff --git a/info.rkt b/info.rkt
new file mode 100644
index 0000000..2af8b3b
--- /dev/null
+++ b/info.rkt
@@ -0,0 +1,2 @@
+#lang info
+(define deps '("base" "gui-lib" "https://github.com/tojoqk/tojoqk-amb.git"))
diff --git a/main.rkt b/main.rkt
index f4365c5..99616d2 100644
--- a/main.rkt
+++ b/main.rkt
@@ -1,8 +1,11 @@
#lang racket/base
+(require pict)
(require racket/gui/base)
(require racket/format)
+(require racket/function)
+(require racket/match)
(require racket/contract)
-(require pict)
+(require tojoqk/amb)
(define CELL-SIZE 30)
(define ARROW-LENGTH 40)
@@ -69,49 +72,47 @@
(cc-superimpose (cellophane (filled-rectangle CELL-SIZE CELL-SIZE) 0)
(text (~a x))))
-
(define (cdr* lst)
(if (null? lst)
'()
(cdr lst)))
-(define (pict-sexp/helper sexp height-list fail)
+(define (%pict-sexp sexp height-list)
(when (and (pair? height-list)
(<= 0 (car height-list)))
- (fail))
+ (amb))
(cond
[(pair? sexp)
- (let*-values ([(cell) (pict-cons-cell sexp)]
- [(cell-1 height-list)
+ (let*-values ([(p) (pict-cons-cell sexp)]
+ [(p-1 height-list)
(cond
[(need-arrow? (cdr sexp))
(let-values ([(pict-cdr cdr-height-list)
- (pict-sexp/helper (cdr sexp)
- (cdr* height-list)
- fail)])
- (values (arrow-from-cdr cell pict-cdr)
+ (%pict-sexp (cdr sexp) (cdr* height-list))])
+ (values (arrow-from-cdr p pict-cdr)
(cons 0 cdr-height-list)))]
- [else (values cell (cons 0 (cdr* height-list)))])]
- [(cell-2 height-list)
+ [else (values p (cons 0 (cdr* height-list)))])]
+ [(p-2 height-list)
(cond
[(need-arrow? (car sexp))
- (let retry ([len 1] [height-list (map sub1 height-list)])
- (let/cc escape
- (let/cc fail
- (let-values ([(pict-car height-list)
- (pict-sexp/helper (car sexp)
- height-list
- fail)])
- (escape (arrow-from-car len cell pict-car)
- (map (λ (x) (+ x len)) height-list))))
- (retry (add1 len) (map sub1 height-list))))]
- [else (values cell height-list)])])
- (values (lt-superimpose cell-1 cell-2) height-list))]
+ (match-let ([(cons len height-list)
+ (let retry ([len 0]
+ [height-list height-list])
+ (amb (cons len height-list)
+ (retry (add1 len) (map sub1 height-list))))])
+ (let-values ([(pict-car height-list)
+ (%pict-sexp (car sexp) height-list)])
+ (values (arrow-from-car len p pict-car)
+ (map (λ (x) (+ x len)) height-list))))]
+ [else (values p height-list)])])
+ (values (lt-superimpose p-1 p-2) height-list))]
[else
(values (pict-atom sexp) (cons 0 (cdr* height-list)))]))
(define (pict-sexp sexp)
- (define-values (result height-list)
- (pict-sexp/helper sexp '() (λ () (error "pict-sexp: implementation error"))))
- result)
+ (call-with-amb
+ (thunk
+ (define-values (result height-list)
+ (%pict-sexp sexp '()))
+ result)))
(provide/contract [pict-sexp (any/c . -> . pict?)])