diff --git a/diff1.rkt b/diff1.rkt index d3fd805e..b0cc51ea 100644 --- a/diff1.rkt +++ b/diff1.rkt @@ -41,29 +41,29 @@ (define the-css-addition #" -.el-dim { +.el-hlite-dim { filter: brightness(150%) contrast(30%) opacity(0.7); background: none; /* rgba(82, 103, 255, 0.36); */ } .el-hliteadd{ filter: initial; - background: rgba(108, 175, 108, 0.36); + background: rgb(202, 226, 202); } .el-hliterm { filter: initial; - background: rgba(173, 54, 54, 0.36); + background: rgb(225, 182, 182); } -.el-undim { +.el-hlite-normal { filter: initial; background: none; }") (define (init) (elem - #:style (style "dim" + #:style (style #f (list (css-addition the-css-addition))))) (begin-for-syntax @@ -95,8 +95,8 @@ [(null? g) '()])) (define (mode→style m) (case m - [(/) "el-dim"] - [(=) "el-undim"] + [(/) "el-hlite-dim"] + [(=) "el-hlite-normal"] [(-) "el-hliterm"] [(+) "el-hliteadd"])) (define simplified-guide (simplify-guide #'guide1)) diff --git a/scribblings/diff1-example.hl.rkt b/scribblings/diff1-example.hl.rkt new file mode 100644 index 00000000..4de7da8a --- /dev/null +++ b/scribblings/diff1-example.hl.rkt @@ -0,0 +1,72 @@ +#lang hyper-literate #:♦ racket/base +♦;(dotlambda/unhygienic . racket/base) + +♦title{testttt} + +♦require[hyper-literate/diff1] +♦(init) + +We define the function foo as follows: + +♦chunk[ + (define (foo v) + (+ 1 v))] + +However, due to implementation details, we need to add ♦racket[π] to this +value: + +♦hlite[|| {/ (def args (_ _ + _ / . _))} + (define (foo v) + (+ 1 π . v))] + +In order to optimise the sum of ♦racket[1] and ♦racket[π], we extract the +computation to a global helper constant: + + +♦hlite[|| {+ _ _ / (def args '(+ a - b + c d . e) (_ - _ _ + _ / _)) = _} + (define π 3.1414592653589793) + (define one-pus-π (+ 1 π)) + (define (foo v) + '(a b c d . e) + (+ 1 π one-pus-π v))0] + +♦hlite[|| (/ (quote (+ a - b + c d . e)) + (quote (+ a - b + c d . e)) + (= quote (+ a - b + c d . e)) + (quote (quote (+ a - b + c d . e)))) + '(a b c d . e) + (quote (a b c d . e)) + (quote (a b c d . e)) + ''(a b c d . e)] + +The whole program is therefore: + +♦hlite[|| {- a + b = c / d} + 1 2 3 4] + +♦hlite[ {- (+ a - b = c)} + (x y z)] + +♦hlite[ {(z - (+ a - b / . c))} + (0 (x y . z))] + +♦hlite[ {(z - ((+ a a - b b / . c)))} + (0 ((x x y yy . z)))] + +♦hlite[ {(z - ((+ a a - b b / . c)))} + (0 ((x x y yy + . z)))] + +♦chunk[<*> + (require rackunit) + || + (check-= (foo 42) (+ 42 1 3.1414592653589793) 0.1) + (check-equal? (list ) + '((a c d . e) + (a c d . e) + (a c d . e) + (quote (a c d . e)))) + (check-equal? '() '(2 3 4)) + (check-equal? '(0 1) '(0 x z 1)) + (check-equal? ' '(0 x . z)) + (check-equal? ' '(0 x . z))] \ No newline at end of file