comp.lang.ada
 help / color / mirror / Atom feed
From: Georg Bauhaus <bauhaus@futureapps.de>
Subject: Re: Teaching new tricks to an old dog (C++ -->Ada)
Date: Tue, 22 Mar 2005 23:00:09 +0100
Date: 2005-03-22T22:57:04+01:00	[thread overview]
Message-ID: <424094b0$0$11481$9b4e6d93@newsread2.arcor-online.net> (raw)
In-Reply-To: <1111521825.653841@athnrd02>

Ioannis Vranos wrote:
> Georg Bauhaus wrote:
> 
>> Hm. Searching a *map* of entries at numeric keys is different
>> from scanning an array of values and counting occurences. What
>> are you trying to do here?
> 
> 
> 
> Just using the appropriate available container. :-)

Nope.

>> The std::vector is missing an instantiation argument which adds
>> the guarantee that no index value is outside the range
>>  -800_000..12_000_000;
> 
> 
> 
> vector provides method at() that performs range checking.

I think we've been through this. Again, this is not the point.

> Also if you 
> want a vector that has signed integer subscripts or even floating point,

We want a vector type indexed by values between M and N only *and* we
want the compiler + tools to help us make data structures in accord
with these ranges. We want it to take advantage of what it can learn
from the type system which allows index range checking _at compile time_.

>> (How do you make a subrange of double, which is missing from
>> your example.)
> 
> 
> 
> 
> Do you mean like this?

No. I mean a double subtype whose values range from N.M to N'.M'.

I think you are missing the point here. As someone else said this is
not about functions operating on containers.


> [STL for constructs] These are bullet-proof code approaches.

Unfortunatly, this is not relevant in this discussion, which is not
just about algorithms.

>>  Imagine an array shared between a number of threads. The program's
>> task is to count the number of occurences of a particular value
>> in the array. Examples:
>> 1)  A shop has 10 unique doors (use an enum).

> We can use whatever I like, perhaps strings. What is wrong with "Door 1" 
> etc?  :-)

I see the smiley but this is what might be wrong with your
approach: a map indexed by strings is not the same as an array
indexed by ten and only ten numbers. (Actually the numbers are in a
type which includes only 10 numbers and their operations.)

Imagine a Matrix. String indexing of matrix element seems possible
but you'd rather have proper arrays. There is something
wrong with ("Row 5", "Column 1") indexing unless you have very much
time and a lot of RAM.

>> For each door 4 states
>>     can be measured: open/closed, van/no van at the door.
> 
> 
> 
> OK, this sounds easy. What do you think? Since you want an array:

>         bool operator() (const Door &arg)

Nice. However, operator() doesn't return one out of four states,
it returns a Boolean, but o.K.
(If the door is closed and there is a van, you still want some action to
take place. Likewise for the other cases. I know you can write this,
no need as this is not the point, see below)

>         {
>             return open== arg.IsOpen() && van== arg.IsVan();
>         }


>     vector<Door> doors(10);

Here you can see one point that you might want to demonstrate:
The compiler won't tell you that there is something wrong
with

   doors[10].SetOpen().SetNoVan();

Worse, the program won't tell you either. This shows the missing
link between vector indexing and the base type system in your
approach. You could use

   doors.at(10).SetOpen().SetNoVan();

and handle the exception _at run time_.
In Ada, the compiler will tell you: "index value 10 is no good!"
because the array "doors" can only be indexed by values effectively
between 0 .. 9. These and only these are the values of the type
enumerating the ten doors, and only these are allowed as index
values x in expressios doors(x).
No exception handling, no .at() needed when you listen to your
compiler and fix the indexing error before you deliver a program.
You get this for free as a result of the language's type handling
at compile time.


>> 2)  A 5-player team, each team is identified by number drawn from a fixed
>>     set of team numbers. An array (an array, not some other data
>>     structure) measures the number of players from each team present in
>>     a room. Count the number of odd-team players in a room.
> 
> 
> 
> This is easy too. I do not get your point. This can be done with arrays 
> as also with other containers. Why should we be restricted to one type 
> of container?

There is a reason that arrays still exist. One of the reasons
should be obvious when comp.realtime is on the recipient list.
Again, imagine a wave file manipulation process. 
A map indexed by strings is probably not the recommended container
when you need fast matrix computations. In fact, a map might not be
suitable at all irrespective of its key type, when r/w should be in O(1).

- Given an enum, and
- given a language that allows the enum as a basis for the construction
 of an array type in the type system (not using some run time computation
 method, like those you have shown here, IINM)
- given that the compiler can use its knowledge of the enum
 + when it sees an array type based on the enum
 + when it sees an array
 + when it sees an array indexed by a statically known enum value
 + etc.,
you have
(a) useful names for objects in your problem domain, checked at compile-time
(b) a conceptual link between the enum (naming the single items) and
   a container _type_ (containing these items); you cannot use anything
   but these named numbers for indexing
(c) the fastest possible access, for both reading and writing, possibly
   checked at compile time
(d) etc.

The STL descriptions provide further reaonsing why there can be restrictions
on the uses of specific containers in specific situations, viz. O(f(n)).


>> I hope these example illustrate some points. They are not meant to
>> trigger a discussion as to whether an array is the best data
>> structure for everything. (Note that it might be necessary to read
>> values from the array/Vector using random access in O(1), and to
>> store and replace values in O(1), another reason to use an array.)

What if a compiler or other tool can show that in the following expression
(pseudo notation)

  array_variable.at_index [n + m]  <-  f(x)

does not need an index range check on the lhs? (Again, yes, it is possible
to write correct programs. The question is, does one notation + compilation
system have advantages when compared to another? What is the price to pay?)

>  It is not difficult to write a 
> container getting a signed integer as a subscript and have range checking.

Which is not the point.

Georg 



  reply	other threads:[~2005-03-22 22:00 UTC|newest]

Thread overview: 1036+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-03-05 13:42 Teaching new tricks to an old dog (C++ -->Ada) Turamnvia Suouriviaskimatta
2005-03-05 14:11 ` Ludovic Brenta
2005-03-05 14:17 ` EventHelix.com
2005-03-05 14:25   ` Ludovic Brenta
2005-03-05 15:02     ` [OT] " Peter Koch Larsen
2005-03-05 15:39       ` Ludovic Brenta
2005-03-05 16:30         ` Peter Koch Larsen
2005-03-05 17:52           ` Martin Dowie
2005-03-05 19:27             ` Dmitry A. Kazakov
2005-03-05 19:39               ` Martin Dowie
2005-03-05 19:46           ` Ludovic Brenta
2005-03-05 20:27             ` Ioannis Vranos
2005-03-05 21:15               ` Pascal Obry
2005-03-05 21:57                 ` Ioannis Vranos
2005-03-05 22:11                   ` Ioannis Vranos
2005-03-05 22:39                   ` Ioannis Vranos
2005-03-05 23:29                   ` Ludovic Brenta
2005-03-05 23:55                     ` Ioannis Vranos
2005-03-06  0:01                     ` Ioannis Vranos
2005-03-08  6:53                     ` Jerry Coffin
2005-03-08  9:20                       ` Ioannis Vranos
2005-03-08 15:29                         ` Jerry Coffin
2005-03-08 19:16                           ` Ludovic Brenta
2005-03-09 12:54                           ` Marin David Condic
2005-03-08 11:21                       ` [OT] Assembler vs. assembly Marius Amado Alves
2005-03-08 14:06                         ` Ed Falis
2005-03-08 19:18                         ` Ludovic Brenta
2005-03-08 21:16                           ` Marius Amado Alves
2005-03-08 11:47                       ` Teaching new tricks to an old dog (C++ -->Ada) Dr. Adrian Wrigley
2005-03-09  2:43                         ` Jerry Coffin
2005-03-09  9:44                           ` Peter Hermann
2005-03-09 14:32                             ` Jerry Coffin
2005-03-09 22:26                               ` Randy Brukardt
2005-03-09 22:29                           ` Ludovic Brenta
2005-03-09 22:53                             ` Jerry Coffin
2005-03-09 23:11                               ` Ludovic Brenta
2005-03-10  0:12                                 ` Jerry Coffin
2005-03-08 13:02                       ` Falk Tannhäuser
2005-03-08 14:37                         ` Jerry Coffin
2005-03-08 23:29                         ` Ioannis Vranos
2005-03-08 19:25                       ` Ludovic Brenta
2005-03-06  0:41                   ` [OT] " Jim Rogers
2005-03-06  1:23                     ` Ioannis Vranos
2005-03-06  1:35                       ` Ioannis Vranos
2005-03-06  3:11                       ` Jim Rogers
2005-03-06  4:09                         ` Ioannis Vranos
2005-03-06  6:12                           ` Jim Rogers
2005-03-06  1:41                     ` Ioannis Vranos
2005-03-06 20:52                   ` Wouter van Ooijen (www.voti.nl)
2005-03-08  5:12                     ` adaworks
2005-03-08  8:02                       ` Jerry Coffin
2005-03-08 19:52                         ` Martin Dowie
2005-03-09  1:48                           ` Jerry Coffin
2005-03-09  7:00                             ` Martin Dowie
2005-03-09 17:41                               ` Jerry Coffin
2005-03-09 17:53                                 ` Adrien Plisson
2005-03-09 23:12                                   ` Jerry Coffin
2005-03-09 23:36                                     ` Martin Dowie
2005-03-10  2:39                                       ` Jerry Coffin
2005-03-10  7:01                                         ` Martin Dowie
2005-03-10 15:08                                           ` Jerry Coffin
2005-03-10 17:38                                             ` Martin Dowie
2005-03-11  5:10                                               ` Jerry Coffin
2005-03-11 23:37                                                 ` Ludovic Brenta
2005-03-10  2:47                                       ` Ioannis Vranos
2005-03-10 11:29                                         ` Georg Bauhaus
2005-03-10 11:57                                           ` Falk Tannhäuser
2005-03-10 22:38                                     ` Randy Brukardt
2005-03-11  6:21                                       ` Jerry Coffin
2005-03-11  7:10                                         ` Pascal Obry
2005-03-11 15:52                                           ` Jerry Coffin
2005-03-12  0:25                                             ` Martin Dowie
2005-03-12  0:41                                               ` Martin Dowie
2005-03-14 20:41                                               ` kevin  cline
2005-03-12 10:43                                             ` Martin Krischik
2005-03-12 11:21                                               ` Peter Koch Larsen
2005-03-12 15:25                                                 ` Martin Krischik
2005-03-12 16:37                                                   ` Ioannis Vranos
2005-03-12 18:58                                                     ` C/C++ ISO releases and compliance Martin Krischik
2005-03-12 19:22                                                       ` Ioannis Vranos
2005-03-21 15:49                                                     ` Teaching new tricks to an old dog (C++ -->Ada) adaworks
2005-03-21 22:15                                                       ` Paul Dietz
2005-03-23  0:04                                                         ` Randy Brukardt
2005-03-12 20:59                                                   ` Robert A Duff
2005-03-13  9:50                                                     ` Martin Krischik
2005-03-14 20:14                                                   ` kevin  cline
2005-03-14 20:20                                                     ` Ioannis Vranos
2005-03-14 21:35                                                       ` Robert A Duff
2005-03-14 22:52                                                         ` Ioannis Vranos
2005-03-14 23:23                                                           ` Robert A Duff
2005-03-14 23:36                                                             ` Ioannis Vranos
2005-03-15  0:22                                                               ` Robert A Duff
2005-03-15  0:59                                                                 ` Ioannis Vranos
2005-03-15 16:00                                                     ` Martin Krischik
2005-03-15 17:18                                                       ` kevin  cline
2005-03-15 19:07                                                         ` Martin Dowie
2005-03-16  8:46                                                         ` Martin Krischik
2005-03-16 12:17                                                           ` Ioannis Vranos
2005-03-16 14:28                                                             ` Georg Bauhaus
2005-03-16 14:29                                                               ` Ioannis Vranos
2005-03-16 17:00                                                               ` Ioannis Vranos
2005-03-16 18:30                                                                 ` Georg Bauhaus
2005-03-16 18:38                                                                   ` Ioannis Vranos
2005-03-16 11:02                                                         ` Georg Bauhaus
2005-03-16 12:56                                                           ` Ioannis Vranos
2005-03-16 13:05                                                             ` Vinzent 'Gadget' Hoefler
2005-03-16 13:19                                                             ` Pascal Obry
2005-03-16 13:46                                                               ` Ioannis Vranos
2005-03-16 15:59                                                                 ` Pascal Obry
2005-03-16 16:03                                                                 ` Georg Bauhaus
2005-03-16 13:49                                                             ` Georg Bauhaus
2005-03-16 17:25                                                             ` Martin Krischik
2005-03-13 18:41                                               ` Jerry Coffin
2005-03-13 19:21                                                 ` Ioannis Vranos
2005-03-13 23:58                                                   ` dave
2005-03-14  2:17                                                     ` Jeff C
2005-03-14  9:02                                                       ` dave
2005-03-14  9:07                                                         ` dave
2005-03-14  9:14                                                       ` Ioannis Vranos
2005-03-13 19:52                                                 ` Ed Falis
2005-03-14  8:27                                                 ` Jean-Pierre Rosen
2005-03-14 22:55                                                 ` Randy Brukardt
2005-03-15  3:55                                                   ` Jerry Coffin
2005-03-15  6:33                                                     ` Randy Brukardt
2005-03-15 14:00                                                       ` Jerry Coffin
2005-03-15 21:36                                                         ` Randy Brukardt
2005-03-16 23:27                                                           ` Jerry Coffin
2005-03-17  3:48                                                             ` Randy Brukardt
2005-03-17 18:44                                                               ` Jerry Coffin
2005-03-17 20:48                                                                 ` Chad  R. Meiners
2005-03-18  1:43                                                                   ` Jerry Coffin
2005-03-17 23:15                                                                 ` Randy Brukardt
2005-03-17 20:53                                                             ` Chad  R. Meiners
2005-03-18  1:45                                                               ` Jerry Coffin
2005-03-18 15:00                                                                 ` Chad  R. Meiners
2005-03-11  9:04                                         ` Adrien Plisson
2005-03-11 16:58                                           ` Jerry Coffin
2005-03-12 22:13                                             ` Robert A Duff
2005-03-18  2:07                                               ` Jerry Coffin
2005-03-11 22:38                                         ` Wes Groleau
2005-03-21 15:37                                         ` adaworks
2005-03-22  5:00                                           ` Wes Groleau
2005-03-15  1:14                                       ` Larry Kilgallen
2005-03-16 14:12                                       ` Larry Kilgallen
2005-03-16 14:48                                         ` Vinzent 'Gadget' Hoefler
     [not found]                                       ` <1110522060.091940.178510@l41g2000cwc.googleFollowup-To: comp.lang.ada <dxZMIzEUCfAu@eisner.encompasserve.org>
2005-03-16 19:14                                         ` Robert A Duff
2005-03-09 18:04                                 ` Martin Dowie
2005-03-09 18:04                                 ` Martin Dowie
2005-03-09 18:41                                   ` Dmitry A. Kazakov
2005-03-09 18:52                                   ` xpyttl
2005-03-10  9:33                                     ` Martin Dowie
2005-03-10  1:03                                   ` Wes Groleau
     [not found]                               ` <1110390097.53213 <4587297.MlX1AOUbAb@linux1.krischik.com>
2005-03-13  3:17                                 ` C/C++ ISO releases and compliance Greg Comeau
     [not found]                               ` <1110390097.532139.43430@f14g2000cwb.googlegro <3254889.VeKxRnD1pd@linux1.krischik.com>
2005-03-13 14:32                                 ` Teaching new tricks to an old dog (C++ -->Ada) Greg Comeau
     [not found]                               ` <1110390097.532139.43430@f14g2000cwb.googlegrou <ath31d.1vm.ln@hunter.axlog.fr>
2005-03-14 20:46                                 ` Greg Comeau
2005-03-14 22:53                                   ` Martin Dowie
2005-03-14 23:00                                   ` Randy Brukardt
2005-03-15  9:18                                   ` Jean-Pierre Rosen
2005-03-22  8:08                               ` Larry Kilgallen
     [not found]                             ` <d0m <4952804.Myubg7stsI@linux1.krischik.com>
2005-03-13  1:55                               ` Greg Comeau
2005-03-13  2:12                               ` Greg Comeau
     [not found]                             ` <d0m <1462853.JgxLXPrZ7W@linux1.krischik.com>
2005-03-13  2:49                               ` Greg Comeau
2005-03-13  9:19                                 ` Martin Dowie
2005-03-13 14:26                                   ` Greg Comeau
2005-03-13 17:27                                     ` Martin Krischik
2005-03-13 18:17                                       ` Martin Dowie
2005-03-13 20:07                                       ` Greg Comeau
2005-03-14  0:31                                         ` Robert A Duff
2005-03-14  2:15                                           ` Ed Falis
2005-03-14 16:26                                             ` Larry Kilgallen
2005-03-14  8:53                                           ` Ioannis Vranos
2005-03-14  8:55                                             ` Ioannis Vranos
2005-03-14 20:27                                           ` Greg Comeau
2005-03-14 21:30                                             ` Robert A Duff
2005-03-14 21:53                                               ` Greg Comeau
2005-03-21 15:54                                               ` adaworks
2005-03-21 16:54                                                 ` Jerry Coffin
2005-03-21 17:10                                                   ` Yermat
2005-03-21 17:19                                                   ` Robert A Duff
2005-03-14 20:05                       ` kevin  cline
2005-03-23 23:51                         ` adaworks
2005-03-24  2:53                           ` Wes Groleau
2005-03-24 19:26                           ` kevin  cline
2005-03-08  4:59                   ` [OT] " adaworks
2005-03-08 15:02                   ` John Hudak
2005-03-08 19:13                     ` Ludovic Brenta
2005-03-08 23:40                     ` Ioannis Vranos
2005-03-05 22:44             ` Peter Koch Larsen
2005-03-05 22:59               ` Ludovic Brenta
2005-03-06  0:58                 ` Ed Falis
2005-03-06 13:11                   ` Ludovic Brenta
2005-03-06  7:54               ` Dmitry A. Kazakov
2005-03-06 11:21               ` Martin Krischik
2005-03-06 20:57               ` Wouter van Ooijen (www.voti.nl)
2005-03-06  1:03             ` Martin Dowie
2005-03-06  1:33               ` Pete Fenelon
2005-03-06  1:59               ` Larry Elmore
2005-03-06 15:22               ` xpyttl
2005-03-06 15:38                 ` Pete Fenelon
2005-03-07 11:03             ` Christoph Grein
2005-03-05 20:12           ` Larry Kilgallen
2005-03-06 20:49           ` Wouter van Ooijen (www.voti.nl)
2005-03-06 23:09             ` Peter Koch Larsen
2005-03-06 23:20               ` jimmaureenrogers
2005-03-06 23:42                 ` Paul E. Bennett
2005-03-07  2:01                   ` Larry Kilgallen
2005-03-07  2:04                   ` Jim Rogers
2005-03-07  4:10                   ` Ed Falis
2005-03-07  7:00                   ` Martin Dowie
2005-03-06 23:29               ` [OT] " Paul E. Bennett
2005-03-07  1:56                 ` Larry Kilgallen
2005-03-07  4:06                 ` Ed Falis
2005-03-07  7:06                 ` Wouter van Ooijen (www.voti.nl)
2005-03-07 20:10                 ` Simon Wright
2005-03-07 23:33                 ` Ludovic Brenta
2005-03-07  7:04               ` Wouter van Ooijen (www.voti.nl)
2005-03-08  4:50           ` adaworks
2005-03-08 14:51           ` John Hudak
2005-03-09  0:02             ` Ioannis Vranos
2005-03-09  6:53               ` Martin Dowie
2005-03-09  9:43                 ` Ioannis Vranos
2005-03-09 10:11                   ` Martin Dowie
2005-03-10 18:32           ` Preben Randhol
2005-03-11  3:00             ` Larry Kilgallen
2005-03-05 19:48         ` Ioannis Vranos
2005-03-05 20:12           ` Mark Lorenzen
2005-03-05 20:13           ` Ludovic Brenta
2005-03-05 20:44             ` Ioannis Vranos
2005-03-05 20:46               ` Ioannis Vranos
2005-03-06  0:55                 ` Martin Dowie
2005-03-05 21:11               ` Pascal Obry
2005-03-06  3:31                 ` Frank J. Lhota
2005-03-05 21:39               ` Adrien Plisson
2005-03-05 21:45                 ` Adrien Plisson
2005-03-06  3:30               ` Frank J. Lhota
2005-03-06 23:16                 ` Wes Groleau
2005-03-05 21:08             ` Adrien Plisson
2005-03-06 10:57               ` Martin Krischik
2005-03-06 23:26                 ` Wes Groleau
2005-03-07 10:06                   ` Martin Krischik
2005-03-06 21:01             ` Wouter van Ooijen (www.voti.nl)
2005-03-06 21:49               ` Martin Dowie
2005-03-07 14:30                 ` Christoph Grein
2005-03-07 19:03                   ` Martin Dowie
2005-03-05 21:23           ` Martin Krischik
2005-03-06  8:50             ` Ioannis Vranos
2005-03-06 10:43               ` Martin Krischik
2005-03-06 10:48               ` Leif Roar Moldskred
2005-03-06 12:45               ` Mark Lorenzen
2005-03-06 16:13               ` Jim Rogers
2005-03-10 22:36                 ` Robert A Duff
2005-03-05 22:01           ` Larry Kilgallen
2005-03-10  3:47             ` Song Yun Zhao
2005-03-10  4:53               ` Larry Kilgallen
2005-03-10 11:59             ` Alberto
2005-03-10 12:05               ` Adrien Plisson
2005-03-10 12:09               ` Adrien Plisson
2005-03-10 13:25                 ` Larry Kilgallen
2005-03-11 15:51                 ` T Beck
2005-03-22 12:04                   ` adaworks
2005-03-22 13:58                     ` Larry Kilgallen
2005-03-10 12:37               ` [OT] " Alex R. Mosteo
2005-03-10 17:55                 ` Pascal Obry
2005-03-10 21:26                   ` Lutz Donnerhacke
2005-03-11 15:52                     ` jayessay
2005-03-11  2:32                   ` Ioannis Vranos
2005-03-11  2:46                     ` Ioannis Vranos
2005-03-11 16:04                       ` jayessay
2005-03-10 22:15                 ` Robert A Duff
2005-03-11  7:52                   ` Hans Malherbe
2005-03-11 14:00                     ` Robert A Duff
2005-03-11 17:02                       ` Jerry Coffin
2005-03-11 20:48                         ` Robert A Duff
2005-03-12  6:19                           ` Jerry Coffin
2005-03-11  8:52                   ` [OT] " Alex R. Mosteo
2005-03-10 13:24               ` Larry Kilgallen
2005-03-11  7:50                 ` Alberto
2005-03-11 13:16                   ` Larry Kilgallen
2005-03-11 22:48                   ` Wes Groleau
2005-03-10 13:42               ` Dmitry A. Kazakov
2005-03-11  8:05                 ` Alberto
2005-03-11  9:30                   ` Dmitry A. Kazakov
2005-03-11  9:42                     ` Peter Koch Larsen
2005-03-11 10:14                       ` Dmitry A. Kazakov
2005-03-11 12:12                         ` Ioannis Vranos
2005-03-11 12:22                           ` Alex R. Mosteo
2005-03-11 13:29                             ` Peter Koch Larsen
2005-03-11 13:48                               ` Alex R. Mosteo
2005-03-11 12:24                           ` Ioannis Vranos
2005-03-11 13:34                           ` Dmitry A. Kazakov
2005-03-11 14:39                             ` Ioannis Vranos
2005-03-11 13:28                         ` Peter Koch Larsen
2005-03-11 15:29                           ` Dmitry A. Kazakov
2005-03-11 18:07                             ` Peter Koch Larsen
2005-03-11 22:55                     ` Wes Groleau
2005-03-21 21:00                   ` Robert A Duff
2005-03-28  6:33                     ` Dave Thompson
2005-03-28 15:12                       ` Ioannis Vranos
2005-03-28 15:44                         ` REH
2005-03-28 16:12                           ` Ioannis Vranos
2005-03-28 16:43                             ` REH
2005-03-28 18:29                               ` Ioannis Vranos
2005-03-28 18:51                                 ` REH
2005-03-28 19:59                                   ` Ioannis Vranos
2005-03-28 20:42                                     ` REH
2005-03-28 21:24                                       ` Ioannis Vranos
2005-03-28 21:52                                         ` REH
2005-03-29  3:10                                           ` Ioannis Vranos
2005-03-30 12:38                                             ` Ioannis Vranos
2005-03-28 15:44                         ` Ioannis Vranos
2005-03-28 17:03                         ` REH
2005-03-28 18:47                           ` Ioannis Vranos
2005-03-28 19:01                             ` REH
2005-03-28 20:13                               ` Ioannis Vranos
2005-03-28 20:33                                 ` Ioannis Vranos
2005-03-28 17:41                     ` Larry Kilgallen
2005-03-10 16:40               ` red floyd
2005-03-11  4:07                 ` Jim Rogers
2005-03-11  5:05                   ` red floyd
2005-03-10 17:54               ` Pascal Obry
2005-03-11  9:09                 ` Peter Hermann
2005-03-11  2:32               ` fmdf
2005-03-11  2:46                 ` fmdf
2005-03-11  4:06                 ` Ioannis Vranos
2005-03-11  4:53                   ` fabio de francesco
2005-03-11  7:07                     ` Ioannis Vranos
2005-03-11 10:47                     ` Marius Amado Alves
2005-03-12 22:33                     ` Robert A Duff
2005-03-11  5:16                   ` fabio de francesco
2005-03-11  7:25                     ` Ioannis Vranos
2005-03-06  1:01           ` [OT] " Martin Dowie
2005-03-06  1:30             ` Ioannis Vranos
2005-03-06  3:20               ` Jim Rogers
2005-03-06  3:53                 ` Ioannis Vranos
2005-03-06 10:28               ` Martin Krischik
2005-03-06 22:24                 ` Pascal Obry
2005-03-06  4:50             ` Larry Kilgallen
2005-03-08 12:14             ` Hans Malherbe
2005-03-08 12:59               ` Dr. Adrian Wrigley
2005-03-08 13:27                 ` Ioannis Vranos
2005-03-08 18:06                   ` Dr. Adrian Wrigley
2005-03-09  0:05                     ` Ioannis Vranos
2005-03-22  1:15                       ` adaworks
2005-03-22 20:22                         ` Frank J. Lhota
2005-03-22 20:27                           ` Robert A Duff
2005-03-22 21:06                             ` red floyd
2005-03-23 14:08                             ` bjarne
2005-03-23 14:45                               ` Robert A Duff
2005-03-23 15:46                               ` Frank J. Lhota
2005-03-24  7:20                         ` Martin Krischik
2005-03-24 18:57                         ` Jerry Coffin
2005-03-08 15:31               ` Peter Amey
2005-03-08 18:16                 ` Pascal Obry
2005-03-09  0:44                   ` Ioannis Vranos
2005-03-09  8:52                     ` Pascal Obry
2005-03-09  9:49                       ` Ioannis Vranos
2005-03-09 10:07                         ` Pascal Obry
2005-03-09 11:32                           ` Ioannis Vranos
2005-03-09 13:34                             ` Peter Amey
2005-03-09 11:17                         ` Georg Bauhaus
2005-03-09 14:24                           ` Falk Tannhäuser
2005-03-09 14:56                             ` Georg Bauhaus
2005-03-10 10:45                               ` Falk Tannhäuser
2005-03-10 14:25                                 ` Georg Bauhaus
2005-03-10 14:31                                   ` Georg Bauhaus
2005-03-10  4:31                             ` Ioannis Vranos
2005-03-10  4:42                               ` Ioannis Vranos
2005-03-22  1:43                             ` adaworks
2005-03-22  4:02                               ` Ioannis Vranos
2005-03-22  9:49                                 ` Georg Bauhaus
2005-03-22 20:03                                   ` Ioannis Vranos
2005-03-22 22:00                                     ` Georg Bauhaus [this message]
2005-03-23  9:00                                       ` Ioannis Vranos
2005-03-23  9:11                                         ` Pascal Obry
2005-03-23 10:09                                           ` Ioannis Vranos
2005-03-23 10:16                                             ` Pascal Obry
2005-03-23 10:36                                               ` Ioannis Vranos
2005-03-23 10:47                                                 ` Pascal Obry
2005-03-23 11:00                                                   ` Ioannis Vranos
2005-03-23 12:02                                                     ` Pascal Obry
2005-03-23 19:57                                                       ` Ioannis Vranos
2005-03-23 20:22                                                         ` Matthew Heaney
2005-03-24  2:06                                                         ` Jim Rogers
2005-03-24  2:36                                                           ` Matthew Heaney
2005-03-23 11:15                                                 ` Georg Bauhaus
2005-03-23 11:20                                                   ` Ioannis Vranos
2005-03-23 11:24                                                     ` Ioannis Vranos
2005-03-23 13:58                                                       ` fabio de francesco
2005-03-23 20:14                                                         ` Ioannis Vranos
2005-03-24  2:17                                                           ` Jim Rogers
2005-03-24  2:38                                                             ` Ioannis Vranos
2005-03-24  2:50                                                               ` Jim Rogers
2005-03-24  3:23                                                                 ` Ioannis Vranos
2005-03-24  3:28                                                                   ` Ioannis Vranos
2005-03-24  4:26                                                                     ` Georg Bauhaus
2005-03-24  4:43                                                                   ` Georg Bauhaus
2005-03-24 11:33                                                                   ` Martin Krischik
2005-03-25  1:14                                                                     ` Ioannis Vranos
2005-03-25  9:56                                                                       ` Martin Krischik
2005-03-24 18:17                                                                   ` adaworks
2005-03-24 18:37                                                             ` Pascal Obry
2005-03-24 19:41                                                               ` jimmaureenrogers
2005-03-24 14:55                                                           ` fabio de francesco
2005-03-25  1:34                                                             ` Ioannis Vranos
2005-03-25  2:01                                                               ` Dr. Adrian Wrigley
2005-03-24  2:07                                                       ` Matthew Heaney
2005-03-23 11:25                                                 ` Dmitry A. Kazakov
2005-03-23 20:19                                                   ` Ioannis Vranos
2005-03-24  1:58                                                 ` Matthew Heaney
2005-03-25  0:47                                                 ` Chad  R. Meiners
2005-03-25  1:54                                                   ` Ioannis Vranos
2005-03-29  9:26                                               ` Alex R. Mosteo
2005-03-23 18:24                                             ` adaworks
2005-03-23 12:52                                         ` Georg Bauhaus
2005-03-23 20:53                                           ` Ioannis Vranos
2005-03-23 23:01                                             ` Georg Bauhaus
2005-03-24  1:22                                               ` Ioannis Vranos
2005-03-24  2:19                                                 ` Georg Bauhaus
2005-03-24  2:47                                                   ` Ioannis Vranos
2005-03-24 21:10                                                     ` T Beck
2005-03-25  1:02                                                       ` Georg Bauhaus
2005-03-25  2:19                                                         ` Ioannis Vranos
2005-03-25 19:37                                                           ` Georg Bauhaus
2005-03-25 21:01                                                             ` Dr. Adrian Wrigley
2005-03-25 21:16                                                               ` Hyman Rosen
2005-03-26  2:22                                                               ` adaworks
2005-03-26  6:09                                                             ` Ioannis Vranos
2005-03-26  6:13                                                               ` Ioannis Vranos
2005-03-26  9:31                                                             ` Martin Krischik
2005-03-28  2:50                                                               ` Hyman Rosen
2005-03-29  8:54                                                                 ` C++ language support Martin Krischik
2005-03-29  9:11                                                                   ` Alf P. Steinbach
2005-03-29 15:13                                                                     ` Martin Krischik
2005-03-23 13:43                                         ` Teaching new tricks to an old dog (C++ -->Ada) Vinzent 'Gadget' Hoefler
2005-03-24 11:24                                         ` Peter Amey
2005-03-24 11:55                                           ` Ioannis Vranos
2005-03-24 12:50                                             ` Vinzent 'Gadget' Hoefler
2005-03-22 20:50                                   ` Ioannis Vranos
2005-03-22 21:55                                     ` Georg Bauhaus
2005-03-23  9:02                                       ` Ioannis Vranos
2005-03-23 10:28                                         ` Vinzent 'Gadget' Hoefler
2005-03-23 10:53                                           ` Ioannis Vranos
2005-03-23 13:00                                             ` Vinzent 'Gadget' Hoefler
2005-03-23 11:06                                         ` Georg Bauhaus
2005-03-23 11:18                                           ` Ioannis Vranos
2005-03-23 13:22                                             ` Georg Bauhaus
2005-03-23 21:24                                               ` Ioannis Vranos
2005-03-23 21:50                                                 ` Georg Bauhaus
2005-03-24  0:49                                                   ` Ioannis Vranos
2005-03-24  2:46                                             ` Matthew Heaney
2005-03-22 16:19                                 ` fabio de francesco
2005-03-22 20:17                                   ` Ioannis Vranos
2005-03-23 18:35                                     ` adaworks
2005-03-23 18:45                                       ` Martin Dowie
2005-03-23 20:59                                         ` Ioannis Vranos
2005-03-23 21:39                                       ` Robert A Duff
2005-03-24  2:42                                       ` Wes Groleau
2005-03-24  2:54                                         ` Ioannis Vranos
2005-03-24  3:15                                           ` Wes Groleau
2005-03-24  3:30                                             ` Ioannis Vranos
2005-03-24  6:01                                               ` Jerry Coffin
2005-03-24  4:46                                             ` Jerry Coffin
2005-03-25  4:44                                               ` Wes Groleau
2005-03-24  3:21                                         ` Ed Falis
2005-03-24  7:24                                         ` Dmitry A. Kazakov
2005-03-24 10:47                                       ` Martin Krischik
2005-03-24 11:56                                         ` Dmitry A. Kazakov
2005-03-24 13:38                                           ` Martin Krischik
2005-03-24 15:03                                             ` Dmitry A. Kazakov
2005-03-25  9:50                                               ` Martin Krischik
2005-03-25 11:01                                                 ` Dmitry A. Kazakov
2005-03-25 13:55                                                   ` Martin Krischik
2005-03-25  2:35                                             ` Ioannis Vranos
2005-03-25  3:16                                             ` Ioannis Vranos
2005-03-24 11:59                                         ` Ioannis Vranos
2005-03-24 12:54                                           ` Vinzent 'Gadget' Hoefler
2005-03-25  2:38                                             ` Ioannis Vranos
2005-03-24 13:36                                           ` Martin Krischik
2005-03-24 15:43                                             ` Julián Albo
2005-03-25  9:39                                               ` Martin Krischik
2005-03-25  9:25                                         ` Martin Krischik
2005-03-23 18:12                                 ` adaworks
2005-03-23 21:02                                   ` Ioannis Vranos
2005-03-24  0:01                                     ` adaworks
2005-03-24  1:03                                       ` Ioannis Vranos
2005-03-26 22:56                                       ` Owen Jacobson
2005-03-10 13:16                         ` Larry Kilgallen
2005-03-25  4:07                         ` Larry Kilgallen
2005-03-11  3:00                       ` fmdf
2005-03-11 22:20                         ` Wes Groleau
2005-03-08 18:33                 ` CTips
2005-03-08 18:46                   ` Pascal Obry
2005-03-08 20:10                     ` CTips
2005-03-08 20:44                       ` Pascal Obry
2005-03-08 21:21                       ` Georg Bauhaus
2005-03-08 21:48                       ` Georg Bauhaus
2005-03-08 19:24                   ` Larry Kilgallen
2005-03-08 19:31                   ` Dmitry A. Kazakov
2005-03-08 20:13                     ` CTips
2005-03-08 20:38                       ` Martin Dowie
2005-03-09  2:43                         ` CTips
2005-03-09  4:34                           ` Jim Rogers
2005-03-09  5:46                             ` CTips
2005-03-09  6:48                               ` Martin Dowie
2005-03-09  9:24                                 ` Martin Dowie
2005-03-09 15:39                                 ` CTips
2005-03-09 16:37                                   ` Pascal Obry
2005-03-09 17:01                                 ` Gautier
2005-03-09  9:08                               ` Pascal Obry
2005-03-09 16:09                                 ` CTips
2005-03-09 16:33                                   ` Pascal Obry
2005-03-09 22:34                                     ` Ludovic Brenta
2005-03-10  7:19                                       ` Pascal Obry
2005-03-10  0:57                                     ` Wes Groleau
2005-03-10  7:24                                       ` Pascal Obry
2005-03-10 22:22                                         ` Wes Groleau
2005-03-11  7:05                                           ` Pascal Obry
2005-03-10 22:28                                         ` Wes Groleau
2005-03-11 22:06                                           ` Robert A Duff
2005-03-11 22:44                                             ` Wes Groleau
2005-03-11  4:00                                     ` fabio de francesco
2005-03-11  4:20                                       ` fabio de francesco
2005-03-11  7:26                                       ` Pascal Obry
2005-03-09 16:48                                 ` Adrien Plisson
2005-03-09 11:42                               ` Georg Bauhaus
2005-03-09 12:06                                 ` Pascal Obry
2005-03-10  1:47                                 ` CTips
2005-03-10 16:39                                   ` Georg Bauhaus
2005-03-11  6:20                                     ` CTips
2005-03-12  7:27                                       ` Georg Bauhaus
2005-03-12 13:56                                         ` CTips
2005-03-13  2:33                                           ` Georg Bauhaus
2005-03-14 15:38                                           ` Dr. Adrian Wrigley
2005-03-10 23:07                                   ` Randy Brukardt
2005-03-09 14:47                               ` Ed Falis
2005-03-09 19:27                               ` jimmaureenrogers
2005-03-10  2:09                                 ` CTips
2005-03-10  2:35                                   ` jimmaureenrogers
2005-03-11  4:58                                     ` 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada)) CTips
2005-03-11 12:18                                       ` Jean-Pierre Rosen
2005-03-11 14:00                                         ` CTips
2005-03-11 18:53                                           ` Pascal Obry
2005-03-11 19:24                                             ` CTips
2005-03-11 19:38                                               ` Willem
2005-03-12  8:37                                               ` Georg Bauhaus
2005-03-12 17:29                                                 ` CTips
2005-03-12 18:38                                                   ` Martin Dowie
2005-03-12 19:36                                                     ` CTips
2005-03-14 10:38                                                       ` Martin Dowie
2005-03-14 22:15                                                       ` Randy Brukardt
2005-03-15  1:50                                                         ` CTips
2005-03-15  6:54                                                           ` Randy Brukardt
2005-03-13  3:17                                                   ` Jim Rogers
2005-03-13  3:42                                                     ` Arthur J. O'Dwyer
2005-03-13  6:59                                                       ` jimmaureenrogers
2005-03-14  0:48                                                         ` Arthur J. O'Dwyer
2005-03-21  5:59                                                           ` Dave Thompson
2005-03-15 18:37                                                       ` C: [] vs * (was: 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada))) Programmer Dude
2005-03-15 21:29                                                         ` Arthur J. O'Dwyer
2005-03-16  0:08                                                           ` Programmer Dude
2005-03-13  4:10                                                     ` 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada)) CTips
2005-03-13  7:06                                                       ` jimmaureenrogers
2005-03-13  9:01                                                       ` fabio de francesco
2005-03-13 10:31                                                       ` Georg Bauhaus
2005-03-13 11:04                                                         ` Georg Bauhaus
2005-03-13 13:47                                                         ` Marin David Condic
2005-03-13 19:22                                                           ` Georg Bauhaus
2005-03-13 10:37                                                       ` Georg Bauhaus
2005-03-13 14:54                                                       ` Jim Rogers
2005-03-15  8:56                                                   ` 10 rules for benchmarking Vinzent 'Gadget' Hoefler
2005-03-14 15:35                                               ` 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada)) Gautier
2005-03-14 16:19                                                 ` CTips
2005-03-14 17:40                                                   ` Pascal Obry
2005-03-14 20:41                                                   ` Robert A Duff
2005-03-15  1:45                                                     ` CTips
2005-03-12  7:16                                           ` Georg Bauhaus
2005-03-12 11:55                                             ` Willem
2005-03-13  1:18                                               ` Georg Bauhaus
2005-03-12 13:39                                             ` CTips
2005-03-13  4:37                                               ` Georg Bauhaus
2005-03-11 14:34                                         ` Willem
2005-03-11 16:28                                           ` Jean-Pierre Rosen
2005-03-11 18:33                                             ` Willem
2005-03-11 23:04                                         ` 10 rules for benchmarking (was Re: Teaching new tricks to anold " infobahn
2005-03-11 18:50                                       ` 10 rules for benchmarking (was Re: Teaching new tricks to an old " Pascal Obry
2005-03-11 19:14                                         ` CTips
2005-03-11 19:42                                           ` REH
2005-03-11 20:36                                             ` CTips
2005-03-11 20:48                                               ` REH
2005-03-11 21:03                                                 ` Willem
2005-03-11 21:17                                                 ` REH
2005-03-11 23:11                                                 ` CTips
2005-03-12  1:14                                       ` Jim Rogers
2005-03-12  2:32                                         ` CTips
2005-03-12  4:05                                           ` Jim Rogers
2005-03-12 11:00                                             ` CTips
2005-03-12 12:54                                               ` jimmaureenrogers
2005-03-12  2:33                                         ` CTips
2005-03-12  9:30                                           ` Aslan Kral
2005-03-12 12:47                                             ` Aslan Kral
2005-03-12 13:16                                               ` Jim Rogers
2005-03-12 13:29                                                 ` Aslan Kral
2005-03-12 14:37                                                   ` Jim Rogers
2005-03-12 14:45                                       ` 10 rules for benchmarking Martin Eisenberg
2005-03-12 12:52                                     ` Teaching new tricks to an old dog (C++ -->Ada) Willem
2005-03-10  3:59                                   ` Wes Groleau
2005-03-10 14:34                                   ` Arnold
2005-03-13 16:35                               ` 10 rules for benchmarking (was Re: Teaching new tricks to an Larry Kilgallen
2005-03-09 22:30                           ` Teaching new tricks to an old dog (C++ -->Ada) Randy Brukardt
2005-03-08 20:54                       ` Georg Bauhaus
2005-03-08 20:59                       ` Dmitry A. Kazakov
2005-03-09  2:51                         ` CTips
2005-03-09  9:00                           ` Dmitry A. Kazakov
2005-03-08 21:07                       ` Pascal Obry
2005-03-12 10:43                         ` Simon Wright
2005-03-12 11:11                           ` Simon Wright
2005-03-12 17:36                           ` CTips
2005-03-12 23:06                             ` Robert A Duff
2005-03-09  9:12                       ` Pascal Obry
2005-03-11 21:37                       ` Robert A Duff
2005-03-08 20:23                     ` Larry Kilgallen
2005-03-09  1:18                   ` Jim Rogers
2005-03-09  9:14                     ` Dmitry A. Kazakov
2005-03-10 23:04                   ` Robert A Duff
2005-03-09 14:07                 ` Hans Malherbe
2005-03-09 14:52                   ` Martin Dowie
2005-03-09 15:20                     ` Alex R. Mosteo
2005-03-09 15:20                       ` Lutz Donnerhacke
2005-03-09 19:51                       ` Mark Lorenzen
2005-03-10 10:11                         ` Alex R. Mosteo
2005-03-10 21:22                           ` Mark Lorenzen
2005-03-09 22:43                       ` Randy Brukardt
2005-03-10 10:13                         ` Alex R. Mosteo
2005-03-10  2:30                     ` Ioannis Vranos
2005-03-10  4:25                       ` Jim Rogers
2005-03-10  4:41                         ` Ioannis Vranos
2005-03-10  8:05                           ` Jim Rogers
2005-03-10  9:40                             ` Ioannis Vranos
2005-03-10 10:28                               ` Georg Bauhaus
2005-03-10 10:51                                 ` Ioannis Vranos
2005-03-10 12:04                                   ` Georg Bauhaus
2005-03-10 12:18                                     ` Ioannis Vranos
2005-03-10 13:13                                       ` Georg Bauhaus
2005-03-10 13:44                                         ` Ioannis Vranos
2005-03-10 13:32                                       ` Marius Amado Alves
2005-03-12 20:30                                         ` Robert A Duff
2005-03-12 20:39                                           ` Ed Falis
2005-03-13  3:20                                           ` Larry Elmore
2005-03-13  4:41                                           ` Marius Amado Alves
2005-03-13 23:53                                             ` Robert A Duff
2005-03-10 17:35                               ` Pascal Obry
2005-03-11  4:23                                 ` Ioannis Vranos
2005-03-11  7:28                                   ` Pascal Obry
2005-03-11 12:00                                   ` Georg Bauhaus
2005-03-10 23:25                         ` Randy Brukardt
2005-03-09 14:55                   ` Pascal Obry
2005-03-09 15:23                     ` Ed Falis
2005-03-09 15:55                       ` Georg Bauhaus
2005-03-09 16:59                         ` Ed Falis
2005-03-12 14:16                     ` Robert A Duff
2005-03-09 15:23                   ` Adrien Plisson
2005-03-09 15:33                   ` Georg Bauhaus
2005-03-09 15:39                     ` Pascal Obry
2005-03-09 16:43                       ` Marius Amado Alves
     [not found]                         ` <422f2de1$0$181$afc38c87@>
2005-03-09 17:40                           ` Pascal Obry
2005-03-09 17:00                       ` Georg Bauhaus
2005-03-09 17:31                       ` Falk Tannhäuser
2005-03-09 17:43                         ` Pascal Obry
2005-03-10  4:12                           ` Ioannis Vranos
2005-03-10  8:23                     ` Hans Malherbe
2005-03-09 15:56                   ` jimmaureenrogers
2005-03-09 22:52                     ` Randy Brukardt
2005-03-10  3:36                     ` Wes Groleau
2005-03-10  4:00                       ` Jerry Coffin
2005-03-10  4:08                         ` Wes Groleau
2005-03-18  8:22                           ` Jerry Coffin
2005-03-18 12:39                             ` Ioannis Vranos
2005-03-10  4:16                       ` Ioannis Vranos
2005-03-10 10:11                       ` Falk Tannhäuser
2005-03-12 14:52                         ` Robert A Duff
2005-03-09 17:03                   ` Larry Kilgallen
2005-03-12 14:55                     ` Robert A Duff
2005-03-12 17:59                       ` CTips
2005-03-14 14:48                         ` Dr. Adrian Wrigley
2005-03-14 16:30                           ` Larry Kilgallen
2005-03-14 21:13                           ` CTips
2005-03-15  1:04                             ` Larry Kilgallen
2005-03-14 20:22                         ` Robert A Duff
2005-03-14 22:41                         ` Robert A Duff
2005-03-12 22:31                       ` Larry Kilgallen
2005-03-13 23:38                         ` Robert A Duff
2005-03-14 16:23                           ` Larry Kilgallen
2005-03-14 20:30                             ` Robert A Duff
2005-03-10  3:26                   ` Wes Groleau
2005-03-23 19:53                 ` Jerry Coffin
2005-03-23 20:17                   ` Matthew Heaney
2005-03-23 20:28                     ` Jerry Coffin
2005-03-23 21:41                       ` Matthew Heaney
2005-03-23 21:52                       ` Robert A Duff
2005-03-24  1:50                         ` Jerry Coffin
2005-03-23 20:34                   ` Martin Dowie
2005-03-23 21:13                     ` Ioannis Vranos
2005-03-23 22:01                     ` Robert A Duff
2005-03-24  7:48                       ` Dmitry A. Kazakov
2005-03-26 10:19                       ` Class hierarchy of exceptions (Ada, C++) Ludovic Brenta
2005-03-26 12:36                         ` Dmitry A. Kazakov
2005-03-26 13:55                           ` Georg Bauhaus
2005-03-28 10:32                             ` Ludovic Brenta
2005-03-28 10:24                           ` Ludovic Brenta
2005-03-28 12:29                             ` Dmitry A. Kazakov
2005-03-26 22:33                         ` Ioannis Vranos
2005-03-28 10:49                           ` Ludovic Brenta
2005-03-28 12:08                             ` Ioannis Vranos
2005-03-28 12:21                               ` Ludovic Brenta
2005-03-28 12:29                                 ` Ioannis Vranos
2005-03-29 11:42                                 ` Florian Weimer
2005-03-28 16:02                               ` Pascal Obry
2005-03-28 16:22                                 ` Ioannis Vranos
2005-03-28 16:37                                   ` Ioannis Vranos
2005-03-28 18:15                                     ` Tapio Kelloniemi
2005-03-28 22:02                                       ` Ludovic Brenta
2005-03-30 10:03                                       ` Peter Koch Larsen
2005-03-30 11:35                                         ` Tapio Kelloniemi
2005-03-30 12:01                                           ` Pascal Obry
2005-03-30 12:22                                           ` Ioannis Vranos
2005-03-29  8:43                             ` Jean-Pierre Rosen
2005-03-29 16:57                               ` Pascal Obry
2005-03-30  9:02                                 ` Jean-Pierre Rosen
2005-03-28 22:56                         ` Randy Brukardt
2005-03-24  1:33                     ` Teaching new tricks to an old dog (C++ -->Ada) Jerry Coffin
2005-03-24 18:31                       ` adaworks
2005-03-24 22:59                       ` jayessay
2005-03-25  1:32                         ` Dr. Adrian Wrigley
2005-03-25  6:28                           ` Jerry Coffin
2005-03-25 14:20                             ` Dr. Adrian Wrigley
2005-03-25 21:14                               ` Jerry Coffin
2005-03-26  8:49                                 ` Martin Krischik
2005-03-26 20:29                                   ` Jerry Coffin
2005-03-27  8:18                                     ` Martin Krischik
2005-03-27 10:28                                       ` Ioannis Vranos
2005-03-27 17:53                                         ` adaworks
2005-03-27 14:38                                       ` Jerry Coffin
2005-03-27 15:46                                         ` Dmitry A. Kazakov
2005-03-27 17:50                                         ` Martin Krischik
2005-03-28  5:34                                           ` Jerry Coffin
2005-03-27 19:21                                     ` Chad  R. Meiners
2005-03-28  9:09                                       ` Jerry Coffin
2005-03-29 21:35                                         ` Chad  R. Meiners
2005-03-27 19:41                                     ` Chad  R. Meiners
2005-03-28  6:02                                       ` Jerry Coffin
2005-03-28 23:37                                         ` Chad  R. Meiners
2005-03-29 21:00                                         ` Chad  R. Meiners
2005-03-25 21:33                               ` Hyman Rosen
2005-03-26  7:43                                 ` Dmitry A. Kazakov
2005-03-26  0:58                             ` Wes Groleau
2005-03-26  3:02                           ` jayessay
2005-03-25  3:31                         ` Jeremy J
2005-03-25  4:40                         ` Jared
2005-03-26  3:28                           ` jayessay
2005-03-25 23:45                         ` Jerry Coffin
2005-03-26  3:42                           ` jayessay
2005-03-26  9:02                             ` Jerry Coffin
2005-03-26 21:43                               ` jayessay
2005-03-27  1:26                                 ` Jerry Coffin
2005-03-27  2:24                                   ` jayessay
2005-03-27 19:51                                   ` Chad  R. Meiners
2005-03-28  9:23                                     ` Jerry Coffin
2005-03-29  1:09                                       ` Chad  R. Meiners
2005-03-28  3:02                               ` Hyman Rosen
2005-03-28  6:48                                 ` Paul Mensonides
2005-03-28 21:32                                   ` jayessay
2005-03-29 10:22                                     ` Paul Mensonides
2005-03-29 16:44                                       ` jayessay
2005-03-28 21:24                                 ` jayessay
2005-03-29 10:17                                   ` Paul Mensonides
2005-03-29 16:37                                     ` jayessay
     [not found]                     ` <4241d7a2$0$7285$afc38c87@>
2005-03-24 11:43                       ` Martin Dowie
2005-03-23 21:35                   ` Georg Bauhaus
2005-03-23 21:50                     ` Ioannis Vranos
2005-03-24 13:30                       ` Martin Krischik
2005-03-25  2:48                         ` Ioannis Vranos
2005-03-25  3:27                         ` Ioannis Vranos
2005-03-25  3:27                         ` Ioannis Vranos
2005-03-25 12:42                           ` Rendezvous based mutithreading Martin Krischik
2005-03-25 16:41                             ` Dmitry A. Kazakov
2005-03-25 18:21                               ` Martin Krischik
2005-03-26  7:14                                 ` Dmitry A. Kazakov
2005-03-23 21:37                   ` Teaching new tricks to an old dog (C++ -->Ada) Larry Kilgallen
2005-03-23 23:12                     ` Jerry Coffin
2005-03-24  2:42                       ` Jim Rogers
2005-03-24  3:33                         ` Jerry Coffin
2005-03-24  4:50                       ` Larry Kilgallen
2005-03-24  2:49                     ` Wes Groleau
2005-03-23 22:17                   ` Robert A Duff
2005-03-24  2:16                     ` Jerry Coffin
2005-03-24  3:13                       ` Ed Falis
2005-03-25  1:10                         ` Robert A Duff
2005-03-25  2:33                           ` Jerry Coffin
2005-03-24 13:22                       ` Martin Krischik
2005-03-24 13:16                   ` Martin Krischik
2005-03-24 15:34                     ` Dmitry A. Kazakov
2005-03-24 16:35                     ` Jerry Coffin
2005-03-24 18:34                       ` Pascal Obry
2005-03-24 18:41                       ` adaworks
2005-03-25  1:23                       ` Robert A Duff
2005-03-25  4:58                       ` Wes Groleau
2005-03-25  5:01                       ` Wes Groleau
2005-03-25 21:40                         ` Hyman Rosen
2005-03-26  0:52                           ` Wes Groleau
2005-03-28  3:10                             ` Hyman Rosen
2005-03-25  1:20                     ` Robert A Duff
2005-03-25  2:52                     ` Ioannis Vranos
2005-03-25 18:06                       ` adaworks
2005-03-25 19:12                         ` Ed Falis
2005-03-25  3:14                     ` Ioannis Vranos
2005-03-25  5:04                       ` Wes Groleau
2005-03-25  6:12                         ` Ioannis Vranos
2005-03-08 15:53               ` Larry Kilgallen
2005-03-09  0:57                 ` Ioannis Vranos
2005-03-11  9:28                 ` Peter Koch Larsen
2005-03-10 18:39           ` [OT] " Preben Randhol
2005-03-10 20:55             ` xpyttl
2005-03-10 21:15               ` Ed Falis
2005-03-10 22:39                 ` REH
2005-03-10 23:59                   ` Georg Bauhaus
2005-03-11  8:48                   ` Hans Malherbe
2005-03-11  9:46                   ` [OT] " Dmitry A. Kazakov
2005-03-11 18:01                   ` Dr. Adrian Wrigley
2005-03-11 18:32                     ` Peter Koch Larsen
2005-03-11 19:06                       ` REH
2005-03-11 20:05                       ` Dr. Adrian Wrigley
2005-03-11 20:21                         ` REH
2005-03-11 18:34                     ` Falk Tannhäuser
2005-03-12  8:42                       ` Georg Bauhaus
2005-03-14 14:40                         ` Dr. Adrian Wrigley
2005-03-14 15:05                           ` Ioannis Vranos
2005-03-14 15:42                           ` Peter Koch Larsen
2005-03-14 16:06                           ` Falk Tannhäuser
2005-03-14 17:16                             ` Dr. Adrian Wrigley
2005-03-14 18:43                               ` Ioannis Vranos
2005-03-14 19:29                                 ` Dr. Adrian Wrigley
2005-03-14 20:14                                   ` Dmitry A. Kazakov
2005-03-14 20:27                                     ` Georg Bauhaus
2005-03-14 21:02                                     ` Robert A Duff
2005-03-14 21:46                                       ` Dr. Adrian Wrigley
2005-03-14 23:39                                       ` Hyman Rosen
2005-03-15  0:00                                         ` Robert A Duff
2005-03-15  3:18                                           ` Ed Falis
2005-03-15  9:12                                       ` Dmitry A. Kazakov
2005-03-15 10:51                                         ` Georg Bauhaus
2005-03-15 12:56                                           ` Dmitry A. Kazakov
2005-03-16 11:46                                             ` Georg Bauhaus
2005-03-16 13:31                                               ` Dmitry A. Kazakov
2005-03-16 14:11                                                 ` Georg Bauhaus
2005-03-16 15:16                                                   ` Dmitry A. Kazakov
2005-03-15 13:09                                           ` Dr. Adrian Wrigley
2005-03-14 20:17                                   ` Ioannis Vranos
2005-03-14 20:17                                   ` Georg Bauhaus
2005-03-14 20:33                                   ` Dr. Adrian Wrigley
2005-03-14 22:47                                     ` Ioannis Vranos
2005-03-15  0:02                                       ` Dr. Adrian Wrigley
2005-03-14 21:02                                   ` kevin  cline
2005-03-14 21:25                                     ` Dr. Adrian Wrigley
2005-03-14 23:30                                       ` Hyman Rosen
2005-03-14 23:46                               ` [OT] " Hyman Rosen
2005-03-15  0:10                                 ` Dr. Adrian Wrigley
2005-03-15  8:59                                   ` Dmitry A. Kazakov
2005-03-15 12:01                                   ` Hans Malherbe
2005-03-15 12:54                                     ` Magic ordering Marius Amado Alves
2005-03-15 13:16                                       ` Dmitry A. Kazakov
2005-03-15 13:53                                         ` Marius Amado Alves
2005-03-15 15:08                                           ` Dmitry A. Kazakov
2005-03-15 16:21                                             ` Marius Amado Alves
2005-03-15 17:52                                               ` Dmitry A. Kazakov
2005-03-16 20:03                                         ` Robert A Duff
2005-03-16 20:54                                           ` Dmitry A. Kazakov
2005-03-23 13:49                           ` [OT] Re: Teaching new tricks to an old dog (C++ -->Ada) Matthew Heaney
2005-03-23 15:27                             ` Chris Jefferson
2005-03-11 19:01                     ` REH
2005-03-11 19:43                       ` Ioannis Vranos
2005-03-11 20:03                         ` Ioannis Vranos
2005-03-11 20:08                         ` REH
2005-03-12 11:09                           ` Peter Koch Larsen
2005-03-11 20:14                         ` Marius Amado Alves
2005-03-11 19:23                     ` Ioannis Vranos
2005-03-11 19:54                       ` REH
2005-03-12  6:10                         ` Ioannis Vranos
2005-03-12  6:29                           ` Ioannis Vranos
2005-03-12  6:35                             ` Ioannis Vranos
2005-03-12 12:16                               ` REH
2005-03-12 12:57                                 ` Ioannis Vranos
2005-03-12 13:26                                   ` REH
2005-03-12 17:46                                 ` CTips
2005-03-12 18:40                                   ` Martin Krischik
2005-03-12 19:28                                     ` Ioannis Vranos
2005-03-13  9:29                                       ` Martin Krischik
2005-03-13 15:45                                         ` Ioannis Vranos
2005-03-13 17:04                                           ` Martin Krischik
2005-03-12 18:51                                   ` Jeff C
2005-03-12 18:53                                   ` Ed Falis
2005-03-12 19:40                                     ` CTips
2005-03-13  8:43                                     ` Martin Krischik
2005-03-12 19:14                                   ` Robert A Duff
2005-03-12 21:48                                   ` Martin Dowie
2005-03-12 23:17                                   ` REH
2005-03-21 21:07                               ` Robert A Duff
2005-03-21 23:07                                 ` Ioannis Vranos
2005-03-24  2:24                                   ` Matthew Heaney
2005-03-23 17:26                             ` adaworks
2005-03-23 18:53                               ` Dr. Adrian Wrigley
2005-03-23 21:39                                 ` Ioannis Vranos
2005-03-23 21:55                                   ` REH
2005-03-24  1:14                                   ` Dr. Adrian Wrigley
2005-03-24  1:44                                     ` Ioannis Vranos
2005-03-24  2:26                                       ` Ioannis Vranos
2005-03-12 12:40                           ` REH
     [not found]                         ` <1110607809.837000@at <1110655701.196383@athnrd02>
2005-03-13  3:21                           ` Greg Comeau
2005-03-13  7:48                             ` Ioannis Vranos
2005-03-13 14:20                               ` Greg Comeau
2005-03-13 16:33                         ` Larry Kilgallen
2005-03-12 11:56                       ` Martin Krischik
2005-03-10 21:18               ` Pascal Obry
2005-03-11  4:36                 ` Ioannis Vranos
2005-03-11  7:39                   ` Pascal Obry
2005-03-11  4:58                 ` Jerry Coffin
2005-03-11  7:32                   ` Pascal Obry
2005-03-11  7:48                     ` Ioannis Vranos
2005-03-11 18:30                       ` Pascal Obry
2005-03-11 19:28                         ` Ioannis Vranos
2005-03-11 22:34                     ` Wes Groleau
2005-03-11 22:27                   ` Wes Groleau
2005-03-11 23:25                   ` Ludovic Brenta
2005-03-12 11:20                     ` Martin Krischik
2005-03-10 22:18               ` [OT] " Paul E. Bennett
2005-03-11  2:52                 ` Larry Kilgallen
2005-03-11 22:46                   ` Wes Groleau
2005-03-10 22:35               ` Wes Groleau
2005-03-11  9:38                 ` Peter Amey
2005-03-10 23:37               ` Martin Dowie
2005-03-10 23:58                 ` Georg Bauhaus
2005-03-05 20:55         ` Simon Wright
2005-03-05 22:05         ` Paul E. Bennett
2005-03-06 10:09           ` Martin Krischik
2005-03-06 11:39             ` Paul E. Bennett
2005-03-06 12:35               ` Mark Lorenzen
2005-03-06 13:26               ` Ludovic Brenta
2005-03-07 10:03               ` Martin Krischik
2005-03-07 23:35                 ` Ludovic Brenta
2005-03-06 21:09             ` Wouter van Ooijen (www.voti.nl)
2005-03-07  9:58               ` Martin Krischik
2005-03-05 16:16       ` Mark Lorenzen
2005-03-05 16:42       ` Martin Krischik
2005-03-05 20:14         ` Ioannis Vranos
2005-03-05 20:22           ` Ludovic Brenta
2005-03-05 21:32           ` Martin Krischik
2005-03-05 19:54       ` Larry Kilgallen
2005-03-05 22:33         ` Peter Koch Larsen
2005-03-06  1:07           ` Martin Dowie
2005-03-06  4:47           ` Larry Kilgallen
2005-03-06  9:22             ` Peter Koch Larsen
2005-03-06  9:42               ` Dmitry A. Kazakov
2005-03-06 13:16               ` Larry Kilgallen
2005-03-06 21:14               ` Wouter van Ooijen (www.voti.nl)
2005-03-06 23:19               ` Wes Groleau
2005-03-06 11:44             ` Paul E. Bennett
2005-03-06 12:54               ` Leif Roar Moldskred
2005-03-06 21:15               ` Wouter van Ooijen (www.voti.nl)
2005-03-14 17:36               ` jtg
2005-03-06  9:57           ` Martin Krischik
2005-03-06 21:13           ` Wouter van Ooijen (www.voti.nl)
2005-03-06 20:45       ` Wouter van Ooijen (www.voti.nl)
2005-03-05 17:14   ` Pascal Obry
2005-03-07 11:45     ` Vinzent 'Gadget' Hoefler
2005-03-07 19:01       ` Pascal Obry
2005-03-05 19:52   ` Larry Kilgallen
2005-03-05 20:24     ` xpyttl
2005-03-06 20:36       ` Wouter van Ooijen (www.voti.nl)
2005-03-10 18:26   ` Preben Randhol
2005-03-05 14:39 ` Dmitry A. Kazakov
2005-03-05 15:03 ` Matthias Kaeppler
2005-03-05 16:26   ` Mark Lorenzen
2005-03-05 20:19     ` Ioannis Vranos
2005-03-05 20:24       ` Mark Lorenzen
2005-03-06 20:40         ` Wouter van Ooijen (www.voti.nl)
2005-03-07  6:14           ` Mark A. Biggar
2005-03-05 20:28       ` Ludovic Brenta
2005-03-05 21:14         ` Paul E. Bennett
2005-03-05 22:08       ` Larry Kilgallen
2005-03-05 22:37         ` Peter Koch Larsen
2005-03-06  9:40           ` Martin Krischik
2005-03-06  1:49       ` Larry Elmore
2005-03-06  1:46         ` Ioannis Vranos
2005-03-06 20:38     ` Wouter van Ooijen (www.voti.nl)
2005-03-05 15:24 ` Jeff C
2005-03-05 19:11   ` Ed Falis
2005-03-10 18:25 ` Preben Randhol
2005-03-12 22:45 ` dave
2005-03-12 22:56   ` Ioannis Vranos
2005-03-13  2:18     ` dave
2005-03-14 17:33 ` jtg
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox