... 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...
427
jamespeterdaly
Sep 4, 2002 7:02 am
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...
428
Marcio Marchini
sglebs
Sep 7, 2002 3:50 pm
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 ...
429
Marcio Marchini
sglebs
Sep 7, 2002 3:56 pm
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...
430
Eric Bezault
gobosoft
Sep 7, 2002 6:55 pm
... The above code is correct. If you look at the generated Ace file you should see that all debug instructions have been generated by 'gexace39;. Therefore I...
431
Marcio Marchini
sglebs
Sep 7, 2002 8:16 pm
... 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 ...
432
Berend de Boer
berenddeboer
Sep 19, 2002 4:32 am
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...
433
Eric Bezault
gobosoft
Sep 19, 2002 9:04 am
... 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...
434
Berend de Boer
berenddeboer
Sep 19, 2002 10:15 am
... 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...
435
Eric Bezault
gobosoft
Sep 19, 2002 10:40 am
... 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...
436
Franck Arnaud
franck@...
Sep 19, 2002 4:15 pm
... 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...
437
Eric Bezault
gobosoft
Sep 19, 2002 5:14 pm
... 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...
438
Berend de Boer
berenddeboer
Sep 19, 2002 6:47 pm
... 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...
439
Franck Arnaud
franck@...
Sep 20, 2002 3:06 pm
... 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...
440
Berend de Boer
berenddeboer
Sep 20, 2002 10:39 pm
... That's really interesting, didn't know that. ... Very interesting page. -- Live long and prosper, Berend de Boer...
441
gobo-eiffel@yahoogrou...
Oct 2, 2002 5:50 pm
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 ...
442
gobo-eiffel@yahoogrou...
Oct 2, 2002 5:54 pm
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 ...
443
gobo-eiffel@yahoogrou...
Oct 2, 2002 5:59 pm
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 ...
444
Eric Bezault
gobosoft
Oct 2, 2002 6:09 pm
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...
445
Berend de Boer
berenddeboer
Oct 3, 2002 4:52 am
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...
446
Berend de Boer
berenddeboer
Oct 3, 2002 4:53 am
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...
447
Eric Bezault
gobosoft
Oct 3, 2002 8:34 am
... 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? ... ...
448
Berend de Boer
berenddeboer
Oct 3, 2002 8:44 am
... 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...
449
Eric Bezault
gobosoft
Oct 3, 2002 8:55 am
... If you don't want any end-of-line conversion, you should probably use KL_BINARY_OUTPUT_FILE. -- Eric Bezault mailto:ericb@... ...
450
Franck Arnaud
nenieorg
Oct 4, 2002 7:17 pm
... Side note: %R%N and [^%R]%N have the same meaning in XML, so both (and standalone %Rs as on the mac) can be used interchangeably. -- franck@......
451
Berend de Boer
berenddeboer
Oct 4, 2002 10:14 pm
... 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...
452
Franck Arnaud
nenieorg
Oct 7, 2002 11:41 am
... 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. -- ...
453
Mike
mikeraschend
Oct 14, 2002 9:54 am
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 ...
454
Eric Bezault
gobosoft
Oct 14, 2002 10:27 am
... 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...
455
Mike
mikeraschend
Oct 14, 2002 11:12 am
... 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...