Commit Graph

215 Commits

Author SHA1 Message Date
Max G
ca19075ce7 Add half-precision float support 2017-03-02 02:47:11 -05:00
Raymond Pasco
647455eb1c Merge remote-tracking branches 'eglaysher/maybe-fix-mull' and 'max19/master'
Some error fixes in compiler jets
2017-02-07 14:22:43 -08:00
Max G
7fb269554f ut_find.c typos 2017-02-05 16:26:20 -05:00
C. Guy Yarvin
36a6177226 Remove old event system; fix precommits.. 2017-01-26 20:17:40 -08:00
Elliot Glaysher
932e11ad2c Fix ++mull:ut's handling of $tune.
arvo's sys/hoon.hoon defines the $tune case as:

      {$tune *}
    [(face p.gen sut) (face p.gen dox)]

Fix the C jet so that it doesn't use sut on both spans.
2017-01-24 20:39:04 -08:00
Raymond Pasco
1d607f87e7 Merge branches 'wyt' and 'uni'
Jet +-wyt:in and +-uni:in
2016-12-12 11:20:51 -08:00
Paul Driver
080ed923bd jet +-wyt:in 2016-12-12 11:19:27 -08:00
Paul Driver
91af8f85ff re-jet +-uni:in 2016-12-12 11:18:01 -08:00
C. Guy Yarvin
1548fc7f51 149 and 150. 2016-12-05 16:12:52 -05:00
C. Guy Yarvin
d40015b808 Move ++perk to ++peel; change jets. 2016-10-27 17:26:40 -07:00
C. Guy Yarvin
ceffdf577a =, seems to work. 2016-10-10 16:56:43 -07:00
C. Guy Yarvin
891a1bf909 Fix :use. 2016-10-10 10:17:58 -07:00
C. Guy Yarvin
87f1b8d135 Make =, work. 2016-10-09 14:29:08 -07:00
C. Guy Yarvin
43e1588ba2 Add %use rune (=,). 2016-10-08 21:41:50 -07:00
C. Guy Yarvin
46ddb9367b Merge branch 'master' into learning 2016-09-03 16:23:11 -07:00
Raymond Pasco
40180755c8 Revert "Prevent ++burn:ut jet from zeroing non-constants."
This reverts commit b2d800cf67.

Emergency revert to prevent slowness
2016-08-11 23:53:33 -07:00
Raymond Pasco
f3547e7ac4 Merge branch 'jet-aes', remote-tracking branch 'dhaffey/burn-zeroing'
AES, Ed25519, and ++rep jets
Prevent ++burn:ut jet from zeroing non-constants
2016-08-10 15:00:51 -07:00
Raymond Pasco
08994156e1 Add missing jet for ++rep
(very ghetto)
2016-08-10 09:34:43 -07:00
Dan Haffey
b2d800cf67 Prevent ++burn:ut jet from zeroing non-constants. 2016-08-09 01:45:39 -07:00
Dan Haffey
7027b8bae1 whitespace 2016-08-09 01:44:19 -07:00
C. Guy Yarvin
f5bef73636 Correct merge. 2016-08-05 15:45:45 -07:00
C. Guy Yarvin
e9fe591153 Merge remote-tracking branch 'cgyarvin/retrack' into learning 2016-08-05 15:43:16 -07:00
Raymond Pasco
cd972fc8ef Merge branch 'murmur-jet', remote-tracking branch 'dhaffey/jet-identities'
Jet Murmur3
Fix jet mismatches
2016-08-05 09:32:31 -07:00
Dan Haffey
b023a78ee6 Fix jet discrepancies on ill-typed identity cases. 2016-08-03 22:56:26 -07:00
Raymond Pasco
1d1c3f962c Jet murmur3 2016-08-03 17:49:44 -07:00
Dan Haffey
2311b3ee82 Fix ++peek:ut jet semi-discrepancy 2016-08-01 02:00:26 -07:00
Raymond Pasco
af012bab8a Jet AES ECB and CBC modes 2016-07-20 11:25:05 -07:00
Raymond Pasco
2a41962c2f Merge remote-tracking branches 'jfranklin9000/delete-LIBRE2', 'jfranklin9000/uv_close_on_UV_EOF', 'revprez/revprez-pr-removed_zod-20160612' and 'philipcmonk/reap-jet-fix'
Remove obsolete regex libraries
Stop leaking libuv fds (or whatever they are)
Remove obsolete urb/zod references
Fix memory leak in ++reap jet
2016-06-27 09:10:37 -04:00
Philip C Monk
b7190c7a2d fix misbehaving reap jet
fixes https://www.reddit.com/r/urbit/comments/4pd7vk/im_very_confused_about_standardlibrary_lists/
2016-06-22 22:31:18 -04:00
John Franklin
3f30a01a42 Delete outside/cre2 and outside/re2 2016-06-08 21:05:27 -05:00
Raymond Pasco
4a9d61607f Jet shar:ed curve25519 shared secret arm 2016-05-24 12:00:35 -04:00
C. Guy Yarvin
29617c0694 Learning. 2016-03-30 15:14:11 -07:00
C. Guy Yarvin
66ca74dbe7 Boots and solids. 2016-03-10 18:22:44 -08:00
C. Guy Yarvin
0563b1b275 150 jet structures. 2016-03-10 09:15:43 -08:00
C. Guy Yarvin
d8a61dc07e Move diff code to zuse. 2016-03-09 15:56:23 -08:00
C. Guy Yarvin
daba0838ff Testing. 2016-03-09 14:08:50 -08:00
Raymond Pasco
4389263922 Fix ++lune corner cases for real
without breaking others this time. Cases tested:

(lune '')                  -> ~
(lune '\0a')               -> ~['']
(lune 'a')                 -> noeol
(lune '\0aabcd')           -> noeol
(lune '\0aabcd\0a')        -> ~['' 'abcd']
(lune '\0aabcd\0aefgh')    -> noeol
(lune '\0aabcd\0aefgh\0a') -> ~['' 'abcd' 'efgh']
(lune '\0aabcd\0a\0a')     -> ~['' 'abcd' '']
(lune 'abcd')              -> noeol
(lune 'abcd\0a')           -> ~['abcd']
(lune 'abcd\0aefgh')       -> noeol
(lune 'abcd\0aefgh\0a')    -> ~['abcd' 'efgh']
(lune 'abcd\0a\0a')        -> ~['abcd' '']
2016-03-03 17:34:37 -05:00
Raymond Pasco
db30dbfb00 Fix broken first-byte cases in ++lune
Was broken when first byte was a newline, and when first byte was the
only byte.
2016-03-03 17:11:19 -05:00
Raymond Pasco
e9a429fbdd Activate ++lune jet 2016-03-03 00:06:24 -05:00
Raymond Pasco
66b99d0a6e Add ++lune jet 2016-03-03 00:05:21 -05:00
C. Guy Yarvin
d175c24a57 Fix a bug in deep axis handling. 2016-02-17 11:12:44 -08:00
Anton Dyudin
2bbefd1f58 handle ._~~__ many/~[`n/0] compilation properly
Type was atom/%n, whould be cube/[0 atom/%n]
Cherry-pick of 005903
2016-02-11 16:32:58 -08:00
C. Guy Yarvin
fd001d55ef Keyword/stem changes, final draft. 2016-02-08 19:35:13 -08:00
C. Guy Yarvin
52004a4f97 Generating new stems, double solid. 2016-02-08 18:17:17 -08:00
C. Guy Yarvin
016b5931e5 All stems changed over. 2016-02-05 03:27:26 -08:00
C. Guy Yarvin
9425766ec0 Modified all stems. About to remove old. 2016-02-05 03:10:07 -08:00
C. Guy Yarvin
180c350cdc Everything except %tsgl through %wtdt. 2016-02-05 02:32:37 -08:00
C. Guy Yarvin
c7e9b8676f Keyword stems, step 1. 2016-02-05 01:25:58 -08:00
C. Guy Yarvin
35a385e81c Fully shifted over to modern typed namespace. 2016-02-03 20:51:01 -08:00
C. Guy Yarvin
b26fd40636 More typed .^. 2016-02-03 13:33:43 -08:00