Changes were made in the code that chooses the FFT size due to just this type of problem occuring with certain numbers in the 1.1 release. Choosing the correct...
This error has nothting to do with those changes. This error was "added" since 1.1 In the code for PRP, this code "existed". It is a "quick-check" to see if...
A stronger KP-combined algorithm ******************************** Suppose that every factor f of N satisfies f = 1 mod F f = N^j mod G for some j in [0, T-1]...
Informal PS: I had been racking my brains trying to wind up to F1+F2>0.3, but I can't for the life of me see how to do that, however much Bouk goads me:-) ...
Personally BASIC-style syntax causes my brain to implode, which is why in the last few years I've written precisely _zero_ PFGW scripts. Perhaps a more C-like...
... Yes! Surely there must be an open source interpreter that can be leveraged? Paul __________________________________________________ Virus checked by...
... That would be the "proper" way. However, the problem appealed to the hacker in me, so there's a squeezee-cheezee solution on its way. You'll not like it,...
How about INTERCAL: http://www.muppetlabs.com/~breadbox/intercal-man/home.html which like any decent language has no GOTO - but does have a COME FROM... ...
... I can't stand the faux politeness of intercal. Then again, I'm not supposed to like it, am I? However, you're talking to someone who dabbled with...
... Well, I was originally going to suggest its 1-D equivalent, http://www.muppetlabs.com/~breadbox/bf/ before I plumped for Intercal... ... So how complex can...
... Backus? Sounds like an excuse to party! I can't beat 1954, but one of may favourites is still 1957's "Are you now, or have you ever been... a LISP...
... I don't know. Honestly, I don't know. I said you wouldn't like it... Phil ===== Given that Dubya has control of a such vast arsenal, I'm sure the most...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the openpfgw group. File :...
openpfgw@yahoogroups....
Oct 11, 2003 2:30 pm
1263
The only thing that I've tested this script on is the one that I posted the other day (and the output I posted a was this program's output. DocBook is a pile...
Section 3.2.2 lists: <filename> is a literal string in double quotes This should be changed (in doc, and in source if need be), to: <filename> is a literal...
... Not sure about this one, but in Section 3.2.5: variable, %s used to interpolate a string variable, and %% for a literal quote character. How do you output...
Scriptify bugs (possibly also PFScript bugs) First, I could not run the .pl (using ActivePerl). I modified line 35 like this, and things "seemed" to work....
... <<< If you wish to use the % character in the string write %%. ... So presently there's no way for me to output a '"'. However, I can hone the regexp to...
... I am "thinking" about how to do gosub. I am pretty sure I have a way to do it, just have to get it in. Parameters is still going to be clunky. The...
GOSUB <label> Gosub will jump to the given label, and start processing. When a RETURN command is encountered, execution will start on the line just after the ...
In a "debug" build, scriptfile outputs this: Reserved symbol P Reserved symbol U Reserved symbol V Reserved symbol F Reserved symbol L Reserved symbol R ...
This file: SCRIPT DIM z set z,10 GOSUB func_x PRINT z END LABEL func_x GOSUB func_y set z,0 return LABEL func_y if z > 5 THEN return 2 return prints out 10 ...
I don't care too much what syntax is used, but I do care, considerably, that the last Linux build that Greg put in the files area aborts on the SCRIPT command...
... OK, I'm starting to implement functions in my script. The first stab was too 'clever', and permitted reuse of parameter names, but I think that that causes...
... used, ... The script that I posted here a few days ago, which contains fopen<->OPENFILEIN runs under 20030425's linux build. Phil ... ===== When inserting...
Phil: I am a parasite: I don't build; just run and break. ... Can you put an executable somewhere, please? Actually, it looks as if I miscounted lines and that...
There will be new sources out soon anyways. I have made changes to the script syntax. labels are now: [_a-zA-Z]+[_0-9a-zA-Z]* They were [a-zA-Z]* variables...