... Yes of course, I just wanted to give a simple example. A more difficult one is: [^{DIGIT}{SPACE}{ALPHA}] -- action Your example has limited scalability...
Hi, i need to store a number of peoples names and scores, and then be able to display them. How can i use an array to store these values if all information has...
Has anybody succedded bootstraping the latest GOBO from CVS with SmartEiffel ? I was able to compile my programs with SmartEiffel, but as soon as I tried to ...
Hi, I am running teh CVS version of GOBO (updated last night). My xace file has this: <option if="${DEBUG}"> <option name="assertion" value="all"/> <option...
... The above code is correct. If you look at the generated Ace file you should see that all debug instructions have been generated by 'gexace'. Therefore I...
... True. ... Ok. I just emailed the SE list, let's see what happens. Maybe it is fixed with SmartEiffel, but because I could not boostrap GOBO with ...
Hello Eric, What exactly does DS_HASH_TABLE.make do with the given number of items? Is that the capacity or more an indication of the number of items you...
... It's the capacity as defined here: make (n: INTEGER) is -- Create an empty table and allocate -- memory space for at least `n' items. -- Use `=' as...
... Ah, yes, overlooked that. ... All automatic, I love that :-) So if I give just the max number of items, DS_HASH_TABLE will operate optimal (as good as...
... Yes. ... It's a simple one, not very complicated (no prime numbers etc), so probably not optimal (also this depends on what kind of keys are used). It was...
... The problem is you will see the difference only in pathological cases, so ordinary testing is not useful for this purpose. I'm trying to recall the...
Franck Arnaud
franck@...
Sep 19, 2002 4:15 pm
437
... If I understand correctly, you are just suggesting that I change the routine DS_SPARSE_TABLE.new_modulus to return a prime number instead of an arbitrary...
... I remember partaking part in the search for Mersenne prime numbers, my computer had to work quite hard for that :-)) -- Live long and prosper, Berend de...
... Yes, it seems that's what's needed (if I didn't get my demonstration wrong). ... Yes, another nice example of good Gobo design. This one function was also...
Franck Arnaud
franck@...
Sep 20, 2002 3:06 pm
440
... That's really interesting, didn't know that. ... Very interesting page. -- Live long and prosper, Berend de Boer...
Enter your vote today! A new poll has been created for the gobo-eiffel group: The purpose of this poll is to determine the cost of the effort needed to make ...
gobo-eiffel@yahoogrou...
Oct 2, 2002 5:50 pm
442
Enter your vote today! A new poll has been created for the gobo-eiffel group: The purpose of this poll is to determine the cost of the effort needed to make ...
gobo-eiffel@yahoogrou...
Oct 2, 2002 5:54 pm
443
Enter your vote today! A new poll has been created for the gobo-eiffel group: The purpose of this poll is to determine the cost of the effort needed to make ...
gobo-eiffel@yahoogrou...
Oct 2, 2002 5:59 pm
444
Sorry for these multiple messages. That's the first time I start a poll on Yahoo, and I don't master the process yet! The message below is the one to take into...
Hello All, I noticed that my output had an extra %R on each line. The source was generated on Unix and compiled on Windows. Is the decision to output an...
Hello All, I noticed that my output had an extra %R on each line. The source was generated on Unix and compiled on Windows. Is the decision to output an...
... What generated source are you talking about? Is it this source code which has extra %R, or the output of the program compiled from this source code? ... ...
... The output generated by the source code that was generated on Unix and compiled on Windows. I.e. the output of the std.output.put_string ("this is a...
... Yeah, not sure when I thought when I wrote it, but somehow that %R%N was canonical?? But I'm writing a %N just now. -- Live long and prosper, Berend de...
... Well, line ends are normalised to %N, so you'd expect that to be canonical, and indeed canonical XML (http://www.w3.org/TR/xml-c14n) specifies this. -- ...
Hello, I have a problem with geyacc. When I add a semantic action to a special rule I get a shift/reduce conflict. And this is what I dont understand, because ...
... Is it a semantic action at the end of the rule or in the middle of the rule? Semantic actions in the middle of rules implicitly add empty rules to the...
... http://www.gobosoft.com/eiffel/gobo/geyacc/actions.html#midrule_action s ... Yes it was in the middle of a rule. The link above helped me to solve my...