From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.182.126.137 with SMTP id my9mr9626386obb.13.1383057634223; Tue, 29 Oct 2013 07:40:34 -0700 (PDT) X-Received: by 10.50.2.74 with SMTP id 10mr315432igs.15.1383057634002; Tue, 29 Oct 2013 07:40:34 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!news.glorb.com!i2no8448168qav.0!news-out.google.com!9ni1195qaf.0!nntp.google.com!o2no8445045qas.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 29 Oct 2013 07:40:33 -0700 (PDT) In-Reply-To: <588ec06d-e3ba-40f2-903f-e6060f7ec10f@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=66.126.103.122; posting-account=RxNzCgoAAACA5KmgtFQuaU-WaH7rjnAO NNTP-Posting-Host: 66.126.103.122 References: <588ec06d-e3ba-40f2-903f-e6060f7ec10f@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <09b98ecd-79c9-40dd-b68f-f62756ba7290@googlegroups.com> Subject: Re: NULL_AVL_Tree From: Adam Beneschan Injection-Date: Tue, 29 Oct 2013 14:40:34 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Xref: news.eternal-september.org comp.lang.ada:17555 Date: 2013-10-29T07:40:33-07:00 List-Id: On Tuesday, October 29, 2013 7:21:59 AM UTC-7, Seshu Kumar wrote: > Hello, >=20 > here, my code is=20 > type AVL_Tree is private; > Null_Avl_Tree : constant Avl_Tree; >=20 > in priviate i define: > type AVL_Tree is record > Rep : AVL_Node_Ref; > Size : Natural :=3D 0; > end record; >=20 > Null_Avl_Tree : constant Avl_Tree :=3D ( Rep =3D> null, Size =3D> 0 ); >=20 > here, m accessing NULL_AVL_Tree from other file, is it gives me the same= values >=20 > using like >=20 > VCAST_BITS_1_1_AVL : VCAST_BITS_TYPE_1_1_AVL :=3D > ( others =3D> VCAST_COVER_IO.Null_Avl_Tree ); >=20 > here, i think my Null_Avl_tree is not null. >=20 > Thanks in advance. There's not enough information here. If the problem is that you think Null= _Avl_Tree has a value that's different from what you expect, please post so= me code that produces some result that's different from what you expect, an= d tell us what the output is and what you expected the output to be. -- Adam