From ce56e96aeb32c65c445e1511d2dad0d306dfded7 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Mon, 20 Feb 2012 16:26:44 -0500 Subject: [PATCH] generating the tedious code --- generate-c-star-d.rkt | 72 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 generate-c-star-d.rkt diff --git a/generate-c-star-d.rkt b/generate-c-star-d.rkt new file mode 100644 index 0000000..4a39731 --- /dev/null +++ b/generate-c-star-d.rkt @@ -0,0 +1,72 @@ +#lang racket + +(provide make-c*r names) + +;; A little helper to generate the tedious code for the c*r functions. + +(define (make-c*r (n 4)) + (define template #<symbol (string-append "c" desc "r")))) + + + + +(define (combinations n) + (let loop ([n n]) + (cond + [(= n 2) + (list "aa" "ad" "da" "dd")] + [else + (define sub-answers (loop (sub1 n))) + (append sub-answers + (map (lambda (x) (string-append x "a")) sub-answers) + (map (lambda (x) (string-append x "d")) sub-answers))]))) + +(define (accessor s) + (string-join + (reverse (for/list ([ch s]) + (case ch + [(#\a) "first"] + [(#\d) "rest"]))) + ".")) + +(define (test s) + (string-join (for/list ([i (in-range 1 (string-length s))]) + (let ([s (substring s + (- (string-length s) i) + (string-length s))]) + (format "isPair(x.~a)" + (string-join + (reverse (for/list ([ch s]) + (case ch + [(#\a) "first"] + [(#\d) "rest"]))) + ".")))) + "&&")) +