Search the web
Sign In
New User? Sign Up
concatenative · Discuss the concatenative variety of computer languages: Joy, Forth, Postscript
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1496 - 1525 of 4151   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1496
On Fri, 30 May 2003, stevan apter wrote: [..] ... I see what is happening. The treemap combinator is actually defined in the sequence library "seqlib.joy"....
phimvt@...
phimvt
Offline Send Email
Jun 2, 2003
3:36 am
1497
On Sat, 31 May 2003, stevan apter wrote: [..] ... I have used continuations twice in Joy libraries: in the propositional logic tableaux library 'plglib.joy',...
phimvt@...
phimvt
Offline Send Email
Jun 2, 2003
4:07 am
1498
thanks - that worked. JOY - compiled at 15:46:02 on May 13 2003 (NOBDW) Copyright 2001 by Manfred von Thun usrlib is loaded inilib is loaded agglib is...
stevan apter
sa@...
Send Email
Jun 2, 2003
11:33 am
1499
... From: <phimvt@...> To: <concatenative@yahoogroups.com> Sent: Monday, June 02, 2003 12:00 AM Subject: Re: [stack] Re: K for Joy Programmers...
stevan apter
sa@...
Send Email
Jun 2, 2003
12:03 pm
1500
... Because not only the rest of the current quotation, but the rest of all quotations in which it is nested, is the value of conts, which is why it is conts,...
John Cowan
johnwcowan
Online Now Send Email
Jun 2, 2003
12:19 pm
1501
... you put your finger on it - structured data, but not necessarily confined to syntax trees. for example, in our app, the definition of a simulation will...
stevan apter
sa@...
Send Email
Jun 2, 2003
12:52 pm
1502
... Another excellent example is HTML, which can be readily understood as a non-homogeneous tree: [[p "This is a simple text."] [p "This is an " [em...
John Cowan
johnwcowan
Online Now Send Email
Jun 2, 2003
1:04 pm
1503
but i guess the point of manfred's question is, where do you encounter trees which you would want to process with the tree combinators? that would seem to...
stevan apter
sa@...
Send Email
Jun 2, 2003
1:22 pm
1504
... Just so. Thus a good use of treemap would be to extract a list of strings (easily transformed to a single string) from an HTML text. -- John Cowan...
John Cowan
johnwcowan
Online Now Send Email
Jun 2, 2003
2:45 pm
1505
i suppose my answer at this point has to be: why draw the distinction in the first place (between trees and other non-tree lists of .. lists)? there are atoms...
stevan apter
sa@...
Send Email
Jun 2, 2003
11:03 pm
1506
2 3 conts putln + . [[+]] 5 why isn't conts [[putln +]] is 'putln' filtered as an assist to debugging when programming with continuations? i.e. as a...
stevan apter
sa@...
Send Email
Jun 2, 2003
11:55 pm
1507
... I know you asked John, but here's my take on it. To recur is to do again; however, to recurse is to step into a nested structure FIRST, then repeat. ...
Samuel Falvo
falvosa
Offline Send Email
Jun 3, 2003
12:06 am
1508
... I do the same. -- If you understand, John Cowan things are just as they are; http://www.ccil.org/~cowan if you do not...
John Cowan
johnwcowan
Online Now Send Email
Jun 3, 2003
1:35 am
1509
... I think because when putln executes the continuation has been changed; i.e. conts does not really *save* the continuation. My naive Scheme implementation ...
John Cowan
johnwcowan
Online Now Send Email
Jun 3, 2003
6:42 pm
1510
... From: "John Cowan" <cowan@...> To: <concatenative@yahoogroups.com> Sent: Tuesday, June 03, 2003 2:44 PM Subject: Re: [stack] conts ... ck works as i...
stevan apter
sa@...
Send Email
Jun 3, 2003
11:36 pm
1511
... Looking at interp.c:198 the current implementation of conts_() is: PUSH(conts_,LIST_NEWNODE,LIST_NEWNODE(conts->u.lis->next,conts->next)) Changing this to:...
Nick Forde
nickf42uk
Offline Send Email
Jun 4, 2003
9:13 am
1512
... coroutines? i've seen the following problem posed in this context. you've got a program which recurses through a tree and prints each leaf prefixed by...
stevan apter
sa@...
Send Email
Jun 4, 2003
12:00 pm
1513
... From the reponses to my question I gather that I must reformulate it. Of course Joy has trees as a data structure because lists are allowed to contain...
phimvt@...
phimvt
Offline Send Email
Jun 6, 2003
6:42 am
1514
... I see. Yes, the word "homogeneous" was missing from my question. I had it in mind. In your example below most processing would be required to treat the 'p'...
phimvt@...
phimvt
Offline Send Email
Jun 6, 2003
6:58 am
1515
... I can see that my definition of 'leaf' should really include symbols. So the HTML example is a case of non-homogeneous trees. Otherwise, if 'leaf'...
phimvt@...
phimvt
Offline Send Email
Jun 6, 2003
7:06 am
1516
... As I had it in mind, homogenous lists of homogeneous lists ... are indeed trees, but some trees are inhomogeneous at arbitrary levels. ... Exactly my...
phimvt@...
phimvt
Offline Send Email
Jun 6, 2003
7:15 am
1517
No, don't worry. I haven't abandoned the Joy of the stack. But for years I have had a simple idea about using a queue for evaluating expressions. I never wrote...
phimvt@...
phimvt
Offline Send Email
Jun 6, 2003
7:38 am
1518
... This is very fascinating. Billy and I have considered queue-based languages in the past, but have never gotten to the point of being able to define how it...
Samuel Falvo
falvosa
Offline Send Email
Jun 6, 2003
3:35 pm
1519
... Attached is a by-the-book implementation in Scheme of your algorithm. To try it out, make sure getprop, putprop, and error are implemented in your favorite...
John Cowan
johnwcowan
Online Now Send Email
Jun 6, 2003
7:38 pm
1520
... Well, no, it isn't. You can fetch it from http://home.ccil.org/~cowan/qlang.ss . -- John Cowan <jcowan@...> http://www.reutershealth.com...
John Cowan
johnwcowan
Online Now Send Email
Jun 6, 2003
7:54 pm
1521
i've written a little k resolution theorem prover (for the propositional calculus only): http://www.nsl.com/k/resolve.k i've designed the functions with an eye...
stevan apter
sa@...
Send Email
Jun 7, 2003
2:52 am
1522
... Maybe someone has asked this question before, but is there a *GOOD* quality introduction to K? I can't read it in full right now because of other ...
Samuel Falvo
falvosa
Offline Send Email
Jun 7, 2003
5:22 am
1523
Please ignore this post, unless you sent me a private email with the above subject. This is just a courtesy reply. I responded to your email only today, sorry....
phimvt@...
phimvt
Offline Send Email
Jun 17, 2003
3:39 am
1524
... [..] ... You are right, of course. I have a very vague recollection (5 years ago) that your proposal was actually my first solution, but that I changed it...
phimvt@...
phimvt
Offline Send Email
Jun 17, 2003
4:04 am
1525
... [..] ... [..] ... Yes, maybe. The kind of explicit continuation that I have used for backtracking would probably not be useful here. Another example, this...
phimvt@...
phimvt
Offline Send Email
Jun 17, 2003
4:18 am
Messages 1496 - 1525 of 4151   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help