static L<S> makeHull(MultiMap<S, S> map, S e) { new L<S> l; makeHull_impl(map, e, l); ret l; } static void makeHull_impl(MultiMap<S, S> map, S e, L<S> dest) { if (dest.contains(e)) ret; dest.add(e); for (S f : map.get(e)) makeHull_impl(map, f, dest); }
download show line numbers debug dex old transpilations
Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1001894 | 
| Snippet name: | makeHull - construct transitive hull over a relation (MultiMap), including object itself | 
| Eternal ID of this version: | #1001894/2 | 
| Text MD5: | 4e759da2502958b63d1b38f883337045 | 
| Author: | stefan | 
| Category: | |
| Type: | JavaX fragment (include) | 
| Public (visible to everyone): | Yes | 
| Archived (hidden from active list): | No | 
| Created/modified: | 2018-07-18 13:37:55 | 
| Source code size: | 287 bytes / 13 lines | 
| Pitched / IR pitched: | No / No | 
| Views / Downloads: | 988 / 1188 | 
| Version history: | 1 change(s) | 
| Referenced in: | #1002427 - Accellerating 629 (SPIKE) #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1017369 - makeHull_optimized - construct transitive hull over a relation (MultiMap), including object itself #3000382 - Answer for ferdie (>> t = 1, f = 0) |