comp.lang.ada
 help / color / mirror / Atom feed
* Re: Is T an ancestor of T?
       [not found]             ` <ukhbd.106086$dP1.396181@newsc.telia.net>
@ 2004-10-14  0:29               ` Georg Bauhaus
  0 siblings, 0 replies; 12+ messages in thread
From: Georg Bauhaus @ 2004-10-14  0:29 UTC (permalink / raw)


Bj�rn Persson <spam-away@nowhere.nil> wrote:

: - AARM 4.3.2(5)

Thanks.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17985

-- Georg



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Is T an ancestor of T?
       [not found]               ` <ckot3m$hek$1@a1-hrz.uni-duisburg.de>
@ 2004-10-15 16:55                 ` Martin Krischik
  2004-10-15 17:19                   ` Georg Bauhaus
  0 siblings, 1 reply; 12+ messages in thread
From: Martin Krischik @ 2004-10-15 16:55 UTC (permalink / raw)


Georg Bauhaus wrote:

> Martin Krischik <krischik@users.sourceforge.net> wrote:
>  
> :> 'class as return type of constructor functions creates a number of
> :> not-so-nice conversion necessities that I'd like to avoid.
> : 
> : I thought as an example. Not to actually use this constructor pattern.
> 
> Interestingly, GNAT complains if T is derived from some other
> type Base. For example,
> 
>       function Make return T'Class is
>       begin
>          return T'(T with N => 42);
>       end Make;
> 
> 
>      7.          return T'(T with N => 42);
>                            |
>         >>> expect ancestor type of "T"
> 
> (Same for specific T.)

Well T is not an ancestor of T. T is T itself. You might want try the
example with a tagged type which actually has a parent to see the
difference.

With Regards

Martin
-- 
mailto://krischik@users.sourceforge.net
http://www.ada.krischik.com




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Is T an ancestor of T?
  2004-10-15 16:55                 ` Is T an ancestor of T? Martin Krischik
@ 2004-10-15 17:19                   ` Georg Bauhaus
  2004-10-16 14:37                     ` Martin Krischik
  0 siblings, 1 reply; 12+ messages in thread
From: Georg Bauhaus @ 2004-10-15 17:19 UTC (permalink / raw)


Martin Krischik <krischik@users.sourceforge.net> wrote:
: Georg Bauhaus wrote:
: 
:> Martin Krischik <krischik@users.sourceforge.net> wrote:
:>  
:> :> 'class as return type of constructor functions creates a number of
:> :> not-so-nice conversion necessities that I'd like to avoid.
:> : 
:> : I thought as an example. Not to actually use this constructor pattern.
:> 
:> Interestingly, GNAT complains if T is derived from some other
:> type Base. For example,
:> 
:>       function Make return T'Class is
:>       begin
:>          return T'(T with N => 42);
:>       end Make;
:> 
:> 
:>      7.          return T'(T with N => 42);
:>                            |
:>         >>> expect ancestor type of "T"
:> 
:> (Same for specific T.)
: 
: Well T is not an ancestor of T.

Not in this example where it is derived from another type, named Base.

: T is T itself. You might want try the
: example with a tagged type which actually has a parent to see the
: difference.

This is exactly what I have been doing, the results above are
for a T that is derived from another type, named Base.
In this GNAT spits out this error message. Otherwise it doesn't.

I still don't know whether or not a type is an ancestor of itself,
given that it is a descendant of itself.


-- Georg



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Is T an ancestor of T?
  2004-10-15 17:19                   ` Georg Bauhaus
@ 2004-10-16 14:37                     ` Martin Krischik
  0 siblings, 0 replies; 12+ messages in thread
From: Martin Krischik @ 2004-10-16 14:37 UTC (permalink / raw)


Georg Bauhaus wrote:

> I still don't know whether or not a type is an ancestor of itself,
> given that it is a descendant of itself.

Well we discussed it long enough here and if you really want to know then
there is only one option left. A mail to:

ada-comment@ada-auth.org

This is the mail address of the Ada Authority. If they don't know knowbody
does. (Please note: While Ada Authority is open "for question from the
general public" one should allways ask at comp.lang.ada first).

Don't foreget to subscribe as well otherwise you will never see the answer:

listserv@ada-auth.org

With Regards

Martin

-- 
mailto://krischik@users.sourceforge.net
http://www.ada.krischik.com




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Is T an ancestor of T?
@ 2004-10-18  5:55 Christoph Karl Walter Grein
  2004-10-20 14:02 ` Georg Bauhaus
  0 siblings, 1 reply; 12+ messages in thread
From: Christoph Karl Walter Grein @ 2004-10-18  5:55 UTC (permalink / raw)
  To: comp.lang.ada

From: Georg Bauhaus <sb463ba@l1-hrz.uni-duisburg.de>

> I still don't know whether or not a type is an ancestor of itself,
> given that it is a descendant of itself.

Looking into RM Index for ancestor, you'll find the reference to RM 3.4.1(10) with the definition of ancestor and descendant:
________________________________________________________________
Verschicken Sie romantische, coole und witzige Bilder per SMS!
Jetzt neu bei WEB.DE FreeMail: http://freemail.web.de/?mc=021193




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Is T an ancestor of T?
  2004-10-18  5:55 Is T an ancestor of T? Christoph Karl Walter Grein
@ 2004-10-20 14:02 ` Georg Bauhaus
  2004-10-20 16:18   ` Björn Persson
  0 siblings, 1 reply; 12+ messages in thread
From: Georg Bauhaus @ 2004-10-20 14:02 UTC (permalink / raw)


Christoph Karl Walter Grein <AdaMagica@web.de> wrote:
: From: Georg Bauhaus <sb463ba@l1-hrz.uni-duisburg.de>
: 
:> I still don't know whether or not a type is an ancestor of itself,
:> given that it is a descendant of itself.
: 
: Looking into RM Index for ancestor, you'll find the reference to RM 3.4.1(10) with the definition of ancestor and descendant:

Yes, descendant seem clearly defined in this paragraph. However,
"The ultimate ancestor of a type is the
 ancestor of the type that is not a descendant of any other type."

(In the original example, there was a new tagged private type T
and an aggregate T'(T with n => ) which is o.K. by GNAT, not o.K.
by Object Ada. When T is derive via new from some tagged T0,
both compilers agree again.)

What is "any other type"? Likely it means any type other than the
descendant (which can be a descendant of itself according to the
first sentence of 3.4.1(10))? So by the descendant wording,

   T0 ==> {T0, T1, T1', T2, ...}.

Which of T0, ... is not a descendant of any other type?
And is an ultimate ancestor listed in the line above when ancestor
is "the reverse" of descendant?
That is too tricky for me :-)

-- Georg



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Is T an ancestor of T?
  2004-10-20 14:02 ` Georg Bauhaus
@ 2004-10-20 16:18   ` Björn Persson
  2004-10-20 21:41     ` Georg Bauhaus
  0 siblings, 1 reply; 12+ messages in thread
From: Björn Persson @ 2004-10-20 16:18 UTC (permalink / raw)


Georg Bauhaus wrote:
> Christoph Karl Walter Grein <AdaMagica@web.de> wrote:
> : From: Georg Bauhaus <sb463ba@l1-hrz.uni-duisburg.de>
> : 
> :> I still don't know whether or not a type is an ancestor of itself,
> :> given that it is a descendant of itself.
> : 
> : Looking into RM Index for ancestor, you'll find the reference to RM 3.4.1(10) with the definition of ancestor and descendant:
> 
> Yes, descendant seem clearly defined in this paragraph.

Then I'd say "ancestor" is also clearly defined: "If a type T2 is a 
descendant of a type T1, then T1 is called an ancestor of T2." So if T 
is a descendant of T, then T is an ancestor of T.

> However,
> "The ultimate ancestor of a type is the
>  ancestor of the type that is not a descendant of any other type."

The one ancestor that isn't a descendant of any type other than itself, 
that is, the one that isn't derived, is the ultimate ancestor. At least 
that's how I read that.

Are you reading the annotated or non-annotated manual? The annotated one 
has a lot more to say about this, including some examples:

10
A specific type T2 is defined to be a descendant of a type T1 if T2 is 
the same as T1, or if T2 is derived (directly or indirectly) from T1. A 
class-wide type T2'Class is defined to be a descendant of type T1 if T2 
is a descendant of T1. Similarly, the universal types are defined to be 
descendants of the root types of their classes. If a type T2 is a 
descendant of a type T1, then T1 is called an ancestor of T2. The 
ultimate ancestor of a type is the ancestor of the type that is not a 
descendant of any other type.

10.a
Ramification: A specific type is a descendant of itself. Class-wide 
types are considered descendants of the corresponding specific type, and 
do not have any descendants of their own.

10.b
A specific type is an ancestor of itself. The root of a derivation class 
is an ancestor of all types in the class, including any class-wide types 
in the class.

10.c
Discussion: The terms root, parent, ancestor, and ultimate ancestor are 
all related. For example:

10.d
     * Each type has at most one parent, and one or more ancestor types; 
each type has exactly one ultimate ancestor. In Ada 83, the term 
``parent type'' was sometimes used more generally to include any 
ancestor type (e.g. RM83-9.4(14)). In Ada 95, we restrict parent to mean 
the immediate ancestor.

10.e
     * A class of types has at most one root type; a derivation class 
has exactly one root type.

10.f
     * The root of a class is an ancestor of all of the types in the 
class (including itself).

10.g
     * The type root_integer is the root of the integer class, and is 
the ultimate ancestor of all integer types. A similar statement applies 
to root_real.

-- 
Björn Persson                              PGP key A88682FD
                    omb jor ers @sv ge.
                    r o.b n.p son eri nu




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Is T an ancestor of T?
  2004-10-20 16:18   ` Björn Persson
@ 2004-10-20 21:41     ` Georg Bauhaus
  2004-10-20 23:33       ` Björn Persson
  0 siblings, 1 reply; 12+ messages in thread
From: Georg Bauhaus @ 2004-10-20 21:41 UTC (permalink / raw)


Bj�rn Persson <spam-away@nowhere.nil> wrote:
: Georg Bauhaus wrote:

: 
: Then I'd say "ancestor" is also clearly defined: "If a type T2 is a 
: descendant of a type T1, then T1 is called an ancestor of T2." So if T 
: is a descendant of T, then T is an ancestor of T.
: 

So far so good. As a tree has a root at one and and 
trees at the other ends (so there is no end)
the definition cannot be mirrored so to speak.

:> However,
:> "The ultimate ancestor of a type is the
:>  ancestor of the type that is not a descendant of any other type."
: 
: The one ancestor that isn't a descendant of any type other than itself, 
: that is, the one that isn't derived, is the ultimate ancestor. At least 
: that's how I read that.

Yes, I think that too, but I don't see it in either in the RM nor in the
AARM sentences you quoted. (Which of course means I must be missing
something.)

: 10.b
: A specific type is an ancestor of itself.

o.K.

: 10.c
: Discussion: The terms root, parent, ancestor, and ultimate ancestor are 
: all related. For example:
: 
: 10.d
:     * Each type has at most one parent, and one or more ancestor types; 
: each type has exactly one ultimate ancestor.

So we know there is exactly one ultimate ancestor for each type T.
If T is at the root of a derivation hierarchy of height 0,
is there a named type that is the ultimate ancestor of T?
Is it T? By 10.d I would say yes. By the last sentence of (10),
the ultimate ancestor (T) "is not a descendant of any other type".
So if T is the ultimate ancestor, it is not a descendant of T.
Which it is by the first sentence of (10).
I must be missing something. Specific types?

Then if D is new T with ..., is T the ultimate ancestor of D?
(Again I would agree that it is.)

If T is the ultimate ancestor of T (and T is the ultimate
ancestor of D if D had been defined), can GNAT be right when
(T with n => 0) is accepted as an extension aggregate of specific
type T? I still don't think so.

 (type T is tagged record
     n: Natural;
  end record;)



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Is T an ancestor of T?
  2004-10-20 21:41     ` Georg Bauhaus
@ 2004-10-20 23:33       ` Björn Persson
  2004-10-22  2:27         ` Georg Bauhaus
  0 siblings, 1 reply; 12+ messages in thread
From: Björn Persson @ 2004-10-20 23:33 UTC (permalink / raw)


Georg Bauhaus wrote:

> So we know there is exactly one ultimate ancestor for each type T.
> If T is at the root of a derivation hierarchy of height 0,
> is there a named type that is the ultimate ancestor of T?
> Is it T? By 10.d I would say yes.

Yes.

> By the last sentence of (10),
> the ultimate ancestor (T) "is not a descendant of any other type".
> So if T is the ultimate ancestor, it is not a descendant of T.
> Which it is by the first sentence of (10).
> I must be missing something. Specific types?

Maybe it's the word "other" you're missing? If it read "not a descendant 
of any type", then there would be a contradiction as you say, but it 
reads "not a descendant of any *other* type". "Other" must mean "other 
than itself".

> Then if D is new T with ..., is T the ultimate ancestor of D?
> (Again I would agree that it is.)

Yes.

> If T is the ultimate ancestor of T (and T is the ultimate
> ancestor of D if D had been defined), can GNAT be right when
> (T with n => 0) is accepted as an extension aggregate of specific
> type T? I still don't think so.

Me neither.

By the way, did you notice that class-wide types aren't ancestors or 
descendants of themselves?

-- 
Björn Persson                              PGP key A88682FD
                    omb jor ers @sv ge.
                    r o.b n.p son eri nu




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Is T an ancestor of T?
  2004-10-20 23:33       ` Björn Persson
@ 2004-10-22  2:27         ` Georg Bauhaus
  2004-10-23 16:55           ` Björn Persson
  0 siblings, 1 reply; 12+ messages in thread
From: Georg Bauhaus @ 2004-10-22  2:27 UTC (permalink / raw)


Bj�rn Persson <spam-away@nowhere.nil> wrote:
: Georg Bauhaus wrote:
: 
:> So we know there is exactly one ultimate ancestor for each type T.
:> If T is at the root of a derivation hierarchy of height 0,
:> is there a named type that is the ultimate ancestor of T?
:> Is it T? By 10.d I would say yes.
: 
: Yes.
: 
:> By the last sentence of (10),
:> the ultimate ancestor (T) "is not a descendant of any other type".
:> So if T is the ultimate ancestor, it is not a descendant of T.
:> Which it is by the first sentence of (10).
:> I must be missing something. Specific types?
: 
: Maybe it's the word "other" you're missing?

I don't speak English.  Is there a mix of defined (linguistic)
"ambiguity" (T descends from itself) and assumed clarity of "other"
in this paragraph? (Is there a well defined mathematical meaning of
"other" in general, not just in paragraph 3.4.1(10)? What is the set
of "not any other types"?)

Adding to the quote from Douglas Adams about the descendence
issue, here is one that I remembered when I thought about
"other" once more. It is by M. Kline, and is quoted in some other
book, so I don't know the reference details.

"When a twelfth century youth fell in love he did not take three paces
backward, gaze into her eyes, and tell her she was too beautiful to
live.  He said he would step outside and see about it.  And if, when
he got out, he met a man and broke his head--the other man's head, I
mean--then that proved that his--the firsts fellow's--girl was a
pretty girl. But if the other fellow broke _his_ head--not his own,
you know, but the other fellow's--the other fellow to the second
fellow, that is, because of course the other fellow would only be the
other fellow to him, not the first fellow who--well if he broke his
head, then _his_ girl--not the other fellow's, but the fellow who was
the--Look here, if A broke B's head, then A's girl was a pretty girl;
but if B broke A's head, then A's girl wasn't a pretty girl, but B's
girl was."

I think the issue (or my problem if you wish) might have to do with the
non-natural semantics of mathematical usage (descendant of self etc ...).
Here is one that has caused headaches many times (it's even reported
in well know standard works of math "basics", like in Halmos'). "It"
has also caused an internal assertion failure in ObjectAda when I
"misspelled" part of the following procedure, writing some text that
was not an extension aggregate ;-)
In one of my favorite programming books the authors tell their readers
that a datatype shish_kebab =
Skewer
| Onion of shish_kebab
| Lamb of shish_kebab
| Tomato of shish_kebab.

They go on that if you have just a Skewer, there are only Onions on
this particular shish_kebab which is just a Skewer. Well... There are
no Onions at all and therefore there are only Onions on a shish_kebab?
(Felleisen/Friedman, The Little MLer, Sec. 2) Anyway,


with Answer;  use Answer;

procedure answer_test is

begin

   if
     true = only_onions(Skewer'
                        (null record)) and

     true = only_onions(Onion'
                        (on => new Skewer)) and

     not true = only_onions(Lamb'
                            (on => new Skewer)) and

     not true = only_onions(Onion'
                            (on => new Lamb'
                             (on => new Onion'
                              (on => new Skewer))))
   then
      raise Mathematical_Reasoning;
   end if;

end answer_test;



package Answer is


   type Skewer is tagged null record;
   type Shish_Kebab is access all Skewer'class;

   function only_onions (s: Skewer) return Boolean;

   type Onion (on: Shish_Kebab) is new Skewer with null record;
   function only_onions (s: Onion) return Boolean;

   type Lamb (on: Shish_Kebab) is new Skewer with null record;
   function only_onions (s: Lamb) return Boolean;

   type Tomato (on: Shish_Kebab) is new Skewer with null record;
   function only_onions (s: Tomato) return Boolean;

end Answer;


package body Answer is


   function only_onions (s: Skewer) return Boolean is
   begin
      return true;
   end only_onions;


   function only_onions (s: Onion) return Boolean is
   begin
      return only_onions(s.on.all);
   end only_onions;


   function only_onions (s: Lamb) return Boolean is
   begin
      return false;
   end only_onions;


   function only_onions (s: Tomato) return Boolean is
   begin
      return false;
   end only_onions;

end Answer;

-- Georg Bauhaus

 
: By the way, did you notice that class-wide types aren't ancestors or 
: descendants of themselves?

Yes, and class-wide types don't have parents or ancestors at all,
do they?



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Is T an ancestor of T?
  2004-10-22  2:27         ` Georg Bauhaus
@ 2004-10-23 16:55           ` Björn Persson
  2004-10-26  0:37             ` Randy Brukardt
  0 siblings, 1 reply; 12+ messages in thread
From: Björn Persson @ 2004-10-23 16:55 UTC (permalink / raw)


Georg Bauhaus wrote:
> Björn Persson <spam-away@nowhere.nil> wrote:
> : Georg Bauhaus wrote:
> : 
> :> By the last sentence of (10),
> :> the ultimate ancestor (T) "is not a descendant of any other type".
> :> So if T is the ultimate ancestor, it is not a descendant of T.
> :> Which it is by the first sentence of (10).
> :> I must be missing something. Specific types?
> : 
> : Maybe it's the word "other" you're missing?
> 
> I don't speak English.  Is there a mix of defined (linguistic)
> "ambiguity" (T descends from itself) and assumed clarity of "other"
> in this paragraph? (Is there a well defined mathematical meaning of
> "other" in general, not just in paragraph 3.4.1(10)? What is the set
> of "not any other types"?)

Oh come on! I'm sure German has the same construct. "Other" implies 
"other than X", and X has got to be mentioned or otherwise apparent from 
the context. The sentence is as follows:

"The ultimate ancestor of a type is the ancestor of the type that is not 
a descendant of any other type."

There are two types mentioned that are possible candidates for X. One, 
T1, is being defined as "the ultimate ancestor". The other, T2, is 
spoken of as "a type" and "the type". It is stated that T1 is an 
ancestor of T2, which means that T2 is a descendant of T1. It is also 
stated that T1 is not a descendant of any type except X. So which of T1 
and T2 is X?

If T1 and T2 are the same type, then they are both X, and the sentence 
says that the ultimate ancestor T of a type T is the ancestor T of the 
type T that is not a descendant of any type except T. No problem.

If T1 and T2 are not the same, and T1 is X, then it says that in order 
to be the ultimate ancestor, T1 must not be a descendant of any type 
except T1. That is, "other" means "other than itself".

If T1 and T2 are not the same, and T2 is X, then it says that in order 
to be the ultimate ancestor, T1 must not be a descendant of any type 
except T2. But T1 is an ancestor of T2 so it can't be a descendant of 
T2, and then T1 isn't allowed to be a descendant of any type at all. Not 
  only does this cause a contradiction, but it's also terribly 
convoluted. Why would anyone write "any other type" if "any type" would 
mean the same thing? Obviously they don't mean that T2 is X.

> : By the way, did you notice that class-wide types aren't ancestors or 
> : descendants of themselves?
> 
> Yes, and class-wide types don't have parents or ancestors at all,
> do they?

Yes they have. T is an ancestor of T'Class. I'd assume it's the parent 
too, but I haven't found a proof for that.

-- 
Björn Persson                              PGP key A88682FD
                    omb jor ers @sv ge.
                    r o.b n.p son eri nu




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Is T an ancestor of T?
  2004-10-23 16:55           ` Björn Persson
@ 2004-10-26  0:37             ` Randy Brukardt
  0 siblings, 0 replies; 12+ messages in thread
From: Randy Brukardt @ 2004-10-26  0:37 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 3125 bytes --]

It's nice to see other people doing language-laywering. :-)
Bjorn's interpretation is exactly right. Note that the meaning of words in
the standard is the same as their conventional English meaning if they are
not otherwise defined, and that certainly applies to "other".

              Randy Brukardt.

"Bj�rn Persson" <spam-away@nowhere.nil> wrote in message
news:g2wed.6882$d5.58654@newsb.telia.net...
Georg Bauhaus wrote:
> Bj�rn Persson <spam-away@nowhere.nil> wrote:
> : Georg Bauhaus wrote:
> :
> :> By the last sentence of (10),
> :> the ultimate ancestor (T) "is not a descendant of any other type".
> :> So if T is the ultimate ancestor, it is not a descendant of T.
> :> Which it is by the first sentence of (10).
> :> I must be missing something. Specific types?
> :
> : Maybe it's the word "other" you're missing?
>
> I don't speak English.  Is there a mix of defined (linguistic)
> "ambiguity" (T descends from itself) and assumed clarity of "other"
> in this paragraph? (Is there a well defined mathematical meaning of
> "other" in general, not just in paragraph 3.4.1(10)? What is the set
> of "not any other types"?)

Oh come on! I'm sure German has the same construct. "Other" implies
"other than X", and X has got to be mentioned or otherwise apparent from
the context. The sentence is as follows:

"The ultimate ancestor of a type is the ancestor of the type that is not
a descendant of any other type."

There are two types mentioned that are possible candidates for X. One,
T1, is being defined as "the ultimate ancestor". The other, T2, is
spoken of as "a type" and "the type". It is stated that T1 is an
ancestor of T2, which means that T2 is a descendant of T1. It is also
stated that T1 is not a descendant of any type except X. So which of T1
and T2 is X?

If T1 and T2 are the same type, then they are both X, and the sentence
says that the ultimate ancestor T of a type T is the ancestor T of the
type T that is not a descendant of any type except T. No problem.

If T1 and T2 are not the same, and T1 is X, then it says that in order
to be the ultimate ancestor, T1 must not be a descendant of any type
except T1. That is, "other" means "other than itself".

If T1 and T2 are not the same, and T2 is X, then it says that in order
to be the ultimate ancestor, T1 must not be a descendant of any type
except T2. But T1 is an ancestor of T2 so it can't be a descendant of
T2, and then T1 isn't allowed to be a descendant of any type at all. Not
  only does this cause a contradiction, but it's also terribly
convoluted. Why would anyone write "any other type" if "any type" would
mean the same thing? Obviously they don't mean that T2 is X.

> : By the way, did you notice that class-wide types aren't ancestors or
> : descendants of themselves?
>
> Yes, and class-wide types don't have parents or ancestors at all,
> do they?

Yes they have. T is an ancestor of T'Class. I'd assume it's the parent
too, but I haven't found a proof for that.

--
Bj�rn Persson                              PGP key A88682FD
                    omb jor ers @sv ge.
                    r o.b n.p son eri nu






^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2004-10-26  0:37 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-18  5:55 Is T an ancestor of T? Christoph Karl Walter Grein
2004-10-20 14:02 ` Georg Bauhaus
2004-10-20 16:18   ` Björn Persson
2004-10-20 21:41     ` Georg Bauhaus
2004-10-20 23:33       ` Björn Persson
2004-10-22  2:27         ` Georg Bauhaus
2004-10-23 16:55           ` Björn Persson
2004-10-26  0:37             ` Randy Brukardt
  -- strict thread matches above, loose matches on Subject: below --
2004-10-12  1:31 record extension aggregate for returned type legal? Georg Bauhaus
2004-10-12  8:04 ` Martin Krischik
2004-10-12 14:36   ` Georg Bauhaus
     [not found]     ` <1940150.rU8f1KaX3L@linux1.krischik.com>
2004-10-12 20:24       ` Georg Bauhaus
2004-10-13  7:52         ` Martin Krischik
     [not found]           ` <ckjlhm$2hh$1@a1-hrz.uni-duisburg.de>
     [not found]             ` <ukhbd.106086$dP1.396181@newsc.telia.net>
2004-10-14  0:29               ` Is T an ancestor of T? Georg Bauhaus
2004-10-14  8:54             ` Is T an ancestor of T? (was: Re: record extension aggregate for returned type legal?) Martin Krischik
     [not found]               ` <ckot3m$hek$1@a1-hrz.uni-duisburg.de>
2004-10-15 16:55                 ` Is T an ancestor of T? Martin Krischik
2004-10-15 17:19                   ` Georg Bauhaus
2004-10-16 14:37                     ` Martin Krischik

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