git @ Cat's Eye Technologies Robin / 9e75ab0
Re-implement < > <= >= to avoid bugs with large numbers. Chris Pressey 5 years ago
2 changed file(s) with 47 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
33 Robin 0.4 (autumn 2019)
44 ---------
55
6 * Improved modularity of the specification.
6 * Reworked entire specification document, making it properly modular.
77 * Many tests are for the Robin Expression Language, and have been
88 made explicitly so, instead of for the Robin Toplevel Language.
99 * The `bound?` predicate was added to env lib in stdlib.
1010 * The `require` top-level form was added.
1111 * The `write` command was added to the definition of `line-terminal`.
1212 * Added `random-source` facility to reactors in reference implementation.
13 * Fixed shortcomings in `<` and `>` when operating on large numbers
14 would give incorrect results (thanks wob_jonas!)
15 * Clarified what Robin borrows from PicoLisp (thanks arseniiv!)
1316
1417 Robin 0.3 (Aug 2019)
1518 ---------
2121 | (> (subtract 0 1610612736) 1610612736)
2222 = #f
2323
24 | (> 2147483646 2147483647)
25 = #f
26
27 | (> 1 2147483647)
28 = #f
29
30 | (> (subtract 0 2147483647) (subtract 0 2147483646))
31 = #f
32
33 | (> (subtract 0 2147483647) (subtract 0 1))
34 = #f
35
2436 `>` expects exactly two arguments, both numbers.
2537
26 | (> 14)
38 | (> 14)
2739 ? uncaught exception: (illegal-arguments (14))
2840
29 | (> 14 23 57)
41 | (> 14 23 57)
3042 ? uncaught exception: (illegal-arguments (14 23 57))
3143
32 | (> 14 #t)
44 | (> 14 #t)
3345 ? uncaught exception: (expected-number #t)
3446
35 | (> #t 51)
47 | (> #t 51)
3648 ? uncaught exception: (expected-number #t)
3749
3850 ### `<` ###
5365 = #f
5466
5567 | (< (subtract 0 1610612736) 1610612736)
68 = #t
69
70 | (< 2147483646 2147483647)
71 = #t
72
73 | (< 1 2147483647)
74 = #t
75
76 | (< (subtract 0 2147483647) (subtract 0 2147483646))
77 = #t
78
79 | (< (subtract 0 2147483647) (subtract 0 1))
5680 = #t
5781
5882 `<` expects exactly two arguments, both numbers.
141165
142166 (define > (macro (self args env)
143167 (bind-args (a b) args env
144 (equal? (sign (subtract a b)) 1))))
168 (if (equal? (list (sign a) (sign b)) (list (subtract 0 1) 1))
169 #f
170 (if (equal? (list (sign a) (sign b)) (list 1 (subtract 0 1)))
171 #t
172 (equal? (sign (subtract a b)) 1))))))
173
145174 (define >= (macro (self args env)
146175 (bind-args (a b) args env
147 (if (equal? a b) #t (equal? (sign (subtract a b)) 1)))))
176 (if (equal? a b) #t (> a b)))))
177
148178 (define < (macro (self args env)
149179 (bind-args (a b) args env
150 (equal? (sign (subtract a b)) (subtract 0 1)))))
180 (if (equal? (list (sign a) (sign b)) (list (subtract 0 1) 1))
181 #t
182 (if (equal? (list (sign a) (sign b)) (list 1 (subtract 0 1)))
183 #f
184 (equal? (sign (subtract a b)) (subtract 0 1)))))))
185
151186 (define <= (macro (self args env)
152187 (bind-args (a b) args env
153 (if (equal? a b) #t (equal? (sign (subtract a b)) (subtract 0 1))))))
188 (if (equal? a b) #t (< a b)))))