Re: transitive closure

From: -CELKO- <jcelko212_at_earthlink.net>
Date: 21 Jul 2005 09:01:01 -0700
Message-ID: <1121959499.704989.286200_at_g47g2000cwa.googlegroups.com>


>> I yet to see a case that is handled by recursive "with" and not handled by "connect by". <<

Want to try an Ackeramnn function?

A(x,y) = if x = 0

         then (y+1)
         else if y = 0
              then A(x-1, 1) 
              else A(x-1, A(x,y-1));
Received on Thu Jul 21 2005 - 18:01:01 CEST

Original text of this message