World: r3wp
[Core] Discuss core issues
older newer | first last |
Graham 19-Aug-2010 [17948] | is there a port scheme for trie:// ? |
Henrik 19-Aug-2010 [17949] | Graham, look at the filter function in LIST-VIEW. |
Graham 19-Aug-2010 [17950] | filter-list ? |
Henrik 19-Aug-2010 [17951x3] | no, FILTER. |
sorry, FILTER-ROWS. | |
I guess it's been split in several parts now, so it may be too hard to read. | |
Gabriele 19-Aug-2010 [17954] | Graham, I did that recently, where you get choices as you type. I had ~1000 strings though, so not sure how much it scales. I just indexed by the first two characters. |
Graham 19-Aug-2010 [17955x2] | It seems to be working not too bad for me without a hash .. but I'll need to test it on a slower PC ( test inside a VM I guess ) ... |
video of my current implementation http://screencast.com/t/ZGI5ZTJkOTct | |
Gregg 19-Aug-2010 [17957] | Very nice Graham! Thanks for posting. How did you end up doing the matching? |
Graham 19-Aug-2010 [17958x2] | search each one from the start :) |
rebol seems fast enough | |
Gregg 19-Aug-2010 [17960] | Cool. Yeah, there are times we need to use advanced algorithms, and times we don't. |
Brock 19-Aug-2010 [17961] | Carl has a character by character search in Rebodex. Not sure if that is any better than what you have done. |
Tomc 20-Aug-2010 [17962] | G raham a suffix tree may be what tou want for trem compleation |
Graham 20-Aug-2010 [17963] | suffix tree? |
Tomc 20-Aug-2010 [17964x2] | a forest of trees where the words are on the path from root to leaf so at any interior node the possible compleations are the subtree the node you are on is the root of |
if not clear blame it on post op drugs... I'm recovering from bad cellulitus | |
Sunanda 20-Aug-2010 [17966] | It's a type of denormalised trie: http://marknelson.us/1996/08/01/suffix-trees/ |
Graham 20-Aug-2010 [17967x3] | It clearly has affected your typing! |
I guess you didn't get the necrotizing fasciitis version! | |
So, all I need is to write a function that takes my data and builds the tree ... | |
Tomc 20-Aug-2010 [17970] | it has affected my typing in that I have time to spend here |
Graham 20-Aug-2010 [17971] | Since my data is also invariant ... I could save the data structure and send it to my users :) |
Tomc 20-Aug-2010 [17972x2] | if your controlled vocab chantes much it will be expensive |
this is why controlled vocabularies are good | |
Graham 20-Aug-2010 [17974x2] | There aren't that many new drugs added to the pharmacopaiea on a monthly basis |
The FDA makes sure of that! | |
Tomc 20-Aug-2010 [17976] | sounds ideal |
Graham 20-Aug-2010 [17977x2] | so how are the nodes represented? blocks? objects? |
http://www.mail-archive.com/[list-:-rebol-:-com]/msg07839.html | |
Tomc 20-Aug-2010 [17979] | if you can get away with blocks it should be cheaper , since you only decend, parent is not needed just child blocks and value may work |
Graham 20-Aug-2010 [17980] | Maybe Carl can add this as a native for find/deep :) |
Tomc 20-Aug-2010 [17981] | also look at prefix trees, may be a simpiler variant for word compleation |
Chris 21-Aug-2010 [17982] | Is there a case to be made for use/only ? >> use [a][a: 1] == 1 >> use/only [a][a: 1] == [a: 1] Replaces having to 'double bag' - >> use [a][[a: 1]] Am I missing an obvious equivalent? |
Ladislav 21-Aug-2010 [17983] | I would say, that your equivalent is fine. Since it is not that hard to use the "double bag", I doubt it justifies the refinement, since the refinement expression isn't shorter than the expression it is supposed to replace. |
Chris 21-Aug-2010 [17984x2] | You get longer line lengths in the standard style: use [a][ [ a: 1 ] ] ; picture a: 1 being slightly more code |
vs. use/only [a][ a: 1 ] Partly it's aesthetics - but this is a language, aesthetics can be important. | |
Ladislav 22-Aug-2010 [17986x2] | It still is possible to introduce just a special "double bag style", which is aesthetically acceptable, IMO (I have seen it somewhere, so it is not my invention): use [a] [[ a: 1 ]] |
>> f: func [] [[ [ a: 1 [ b: 2 [ ]] >> f == [ a: 1 b: 2 ] >> source f f: func [][[ a: 1 b: 2 ]] | |
Graham 22-Aug-2010 [17988] | I've got diplopia! |
Gabriele 22-Aug-2010 [17989] | The disadvantage of [[ is that it can be difficult to notice sometimes, but otherwise it seems acceptable in cases like this. |
Izkata 22-Aug-2010 [17990] | If I'm using that, I usually double-indent the surrounded code, to help make it easier to notice |
Chris 22-Aug-2010 [17991x2] | Gab: right, it's more difficult to visually parse, and it's ugly (two different issues, I'd say). Perhaps I need to use a 'double-bag function. |
It's also mentally uncomfortable - it feels like there should be a way to do use/only [a][a: 1] parse "this" use/only [mk][opt "t" mk: to end (probe mk)] | |
Izkata 22-Aug-2010 [17993] | Any reason not just pull the 'use outwards? use [mk][ parse "this" [opt "t" mk: to end (probe mk)] ] |
Chris 22-Aug-2010 [17994] | In that case, no. |
Gabriele 23-Aug-2010 [17995x2] | alternatively... one could think of extending WITH (not sure if we ever decided if we wanted that built-in) |
(hmm, no, same problem, WITH still evaluates) | |
Anton 23-Aug-2010 [17997] | The current USE does: 1. Create context of specified words. 2. Bind body. 3. Evaluate. Chris wants to be able to remove the evaluation. In a perfect world with no legacy issues to worry about, I would prefer USE to do only steps 1 & 2, and USE/DO to do all three steps. Or, a new function could be introduced (which I might name ENCLOSE or COOP) which does only steps 1 & 2. Alternatively, if there was a function which returned a context created from a block of words, eg: CONTEXTUALIZE: func [words [block!]] [ ... ] ; Returns a new context containing words without evaluation. then you could imagine using an idiom to get steps 1 & 2, or all three steps. eg: bind body contextualize words ; Steps 1 & 2. do bind body contextualize words ; All three steps. So Chris' example would be: parse "this" bind [opt "t" mk: to end (probe mk)] contextualize [mk] (<sigh> If only BIND had its argument order reversed...) |
older newer | first last |