Search the web
Sign In
New User? Sign Up
snobol
? 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.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 398 - 427 of 883   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
398
... ... My preference is to use OPSYN(). Note that CSNOBOL4 can be modified to preload file(s) before the execution. If an "edit" is done, STCOUNT trapping...
combobox666
Offline Send Email
Nov 9, 2007
2:22 am
399
... I already decided to use OPSYNs (not much reaction to my post, and it just seemed to be a cleaner solution). ... Preloading in Phil's CSNOBOL4 (my...
Rafal M. Sulejman
rms_s4
Offline Send Email
Nov 9, 2007
8:40 am
400
On state save: There are two purposes behind a state save. The first is to snapshot a computation. The approach of tracking strings may increase the time taken...
combobox666
Offline Send Email
Nov 9, 2007
2:20 pm
401
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the snobol group. File : /DDT Uploaded by...
snobol@yahoogroups.com
Send Email
Nov 9, 2007
6:15 pm
402
I have added DDT to the Files section. This is a modification of the Catspaw SPITBOL debugger, for CSNOBOL4. To use it, -INCLUDE 'DDT' and where you want...
combobox666
Offline Send Email
Nov 9, 2007
6:20 pm
403
I have a version of DDT that uses unix/linux "tput" to do cursor positioning, and does full-screen. It's a hack, but may be useful (although this funcionality...
combobox666
Offline Send Email
Nov 10, 2007
1:42 pm
404
I have posted a SUDOKU puzzle solver in the files section. Feel free to clean it up -- it works, but is probably not the greatest example of SNOBOL4 code. I...
combobox666
Offline Send Email
Nov 11, 2007
2:29 am
405
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the snobol group. File : /SUDOKU Uploaded...
snobol@yahoogroups.com
Send Email
Nov 11, 2007
2:30 am
406
I dont know whom the poster of this is, because they don't sign. combobox666 wrote: There are two purposes behind a state save. The first is to snapshot a ...
Gregory L. White.
whitecyberne...
Offline Send Email
Nov 12, 2007
11:03 am
407
Greg My name is Fred Weigel. Greetings! The 2x comes from this observation - if a program does nothing but assign strings, the string will have to be either...
combobox666
Offline Send Email
Nov 12, 2007
12:17 pm
408
... That seems a pretty good conjecture. I can't see any other simple way of ensuring unique solubility on a routine churn-out-new-puzzles-every-day basis. A...
Michael Davis
michaeldavismd
Offline Send Email
Nov 12, 2007
1:38 pm
409
There is a site called Websudoku.com which is free and generates new puzzles on demand. It would be amusing to write a Windows app that front-ends this site...
John Cole
johncoleunity
Offline Send Email
Nov 12, 2007
2:16 pm
410
On Mon, 12 Nov 2007 12:17:27 -0000 ... I have NO idea what you're trying to say above. But as I understand things, the SIL implementation (at least) maintains...
gep2@...
gep_2
Offline Send Email
Nov 12, 2007
2:28 pm
411
On Mon, 12 Nov 2007 08:16:35 -0600 ... I admit to being intrigued to find a good S'BOL solution to the SUDOKU puzzle, although my gut feeling on the thing is...
gep2@...
gep_2
Offline Send Email
Nov 12, 2007
2:53 pm
412
... There's no debugger in TkS*LIDE (yet). ... Count me in. (Actually I'm interested in both debugger *and* editor) Greetings, -- Rafal...
Rafal M. Sulejman
rms_s4
Offline Send Email
Nov 13, 2007
12:15 pm
413
Greetings Fred. Yes, optimization of code and full garbage cleanup is not possible with the current compilers. For example, what if I use the code() function...
Gregory L. White.
whitecyberne...
Offline Send Email
Nov 14, 2007
4:32 am
414
Exactly. I cannot conceive of how such a puzle: that is, one that requires backtracking, and that has only one solution, and is generated anew every day would...
combobox666
Offline Send Email
Nov 14, 2007
6:48 pm
415
From: snobol@yahoogroups.com On Behalf Of combobox666 Sent: Wednesday, November 14, 2007 11:49 AM . ...
Walker, Radford
sleuthraptorman
Offline Send Email
Nov 14, 2007
10:23 pm
416
With logical approaches, then a bent pseudo random generator might be used, but I dislike gambling and guessing, no matter how well done. Computers are great...
Gregory L. White.
whitecyberne...
Offline Send Email
Nov 14, 2007
11:25 pm
417
I wrote a Sudoku solver in SNOBOL several years ago. The peculiar capabilities of SNOBOL are not particularly salient in this implementation. The Algorithm is...
Tim Swanson
tcswans@...
Send Email
Nov 15, 2007
7:08 am
418
... I am not sure that backtracking necessarily corresponds to guessing. If I think "I have to put a 2 in one of those two spaces, but if I were to put it in ...
Michael Davis
michaeldavismd
Offline Send Email
Nov 15, 2007
11:30 pm
419
... Instead of calling it "guessing", let's call it "exhaustive search". -- +----------------------------------------------------------------+ ... ...
Charles Richmond
codescott3121
Offline Send Email
Nov 15, 2007
11:33 pm
420
... Michael, Yes, that was the point of my message. The very next sentence not quoted above was "This does not mean a computer solution ... would not use...
Walker, Radford
sleuthraptorman
Offline Send Email
Nov 16, 2007
3:06 pm
421
... No, the grammar of that sentence made the meaning perfectly clear, Radford. However, I thought this: " ... " suggested that you were thinking of...
Michael Davis
michaeldavismd
Offline Send Email
Nov 17, 2007
7:52 pm
422
... Yes, in a way that is a much more appropriate description. However, I think even that does not quite capture what I was trying to convey. In the course of ...
Michael Davis
michaeldavismd
Offline Send Email
Nov 17, 2007
8:03 pm
423
... I call the elimination of following line A as: "backtracking with heuristics" -- +----------------------------------------------------------------+ ... ...
Charles Richmond
codescott3121
Offline Send Email
Nov 18, 2007
5:24 am
424
... Yes, it CAN be backtracking with heuristics, and in a computer implementation it might well be. However, that was not what I had in mind. I had in mind a ...
Michael Davis
michaeldavismd
Offline Send Email
Nov 18, 2007
12:22 pm
425
I am having trouble using the URL support in Phil's SNOBOL. I think I must be misinterpreting things, but after opening an URL and trying to read in records, I...
pacoppen
Offline Send Email
Nov 21, 2007
1:48 pm
426
URL is the "universal resource locator". It's roughly analogous to a filename. The URL support just deals with that aspect, and not the protocol aspect. ...
Fred Weigel
combobox666
Offline Send Email
Nov 21, 2007
5:29 pm
427
Actually, I don't. But, in fact, we all die. It's a universal. And, indeed, we all see patterns. Another universal. Not everyone can do advanced math, though. ...
Fred Weigel
combobox666
Offline Send Email
Nov 21, 2007
6:20 pm
Messages 398 - 427 of 883   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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