annotate gcc/testsuite/ada/acats/tests/cxa/cxa5a06.a @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 -- CXA5A06.A
kono
parents:
diff changeset
2 --
kono
parents:
diff changeset
3 -- Grant of Unlimited Rights
kono
parents:
diff changeset
4 --
kono
parents:
diff changeset
5 -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
kono
parents:
diff changeset
6 -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
kono
parents:
diff changeset
7 -- unlimited rights in the software and documentation contained herein.
kono
parents:
diff changeset
8 -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
kono
parents:
diff changeset
9 -- this public release, the Government intends to confer upon all
kono
parents:
diff changeset
10 -- recipients unlimited rights equal to those held by the Government.
kono
parents:
diff changeset
11 -- These rights include rights to use, duplicate, release or disclose the
kono
parents:
diff changeset
12 -- released technical data and computer software in whole or in part, in
kono
parents:
diff changeset
13 -- any manner and for any purpose whatsoever, and to have or permit others
kono
parents:
diff changeset
14 -- to do so.
kono
parents:
diff changeset
15 --
kono
parents:
diff changeset
16 -- DISCLAIMER
kono
parents:
diff changeset
17 --
kono
parents:
diff changeset
18 -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
kono
parents:
diff changeset
19 -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
kono
parents:
diff changeset
20 -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
kono
parents:
diff changeset
21 -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
kono
parents:
diff changeset
22 -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
kono
parents:
diff changeset
23 -- PARTICULAR PURPOSE OF SAID MATERIAL.
kono
parents:
diff changeset
24 --*
kono
parents:
diff changeset
25 --
kono
parents:
diff changeset
26 -- OBJECTIVE:
kono
parents:
diff changeset
27 -- Check that the functions Arccos and Arccosh provide correct
kono
parents:
diff changeset
28 -- results.
kono
parents:
diff changeset
29 --
kono
parents:
diff changeset
30 -- TEST DESCRIPTION:
kono
parents:
diff changeset
31 -- This test examines both the version of Arccos and Arccosh
kono
parents:
diff changeset
32 -- the instantiation of the Ada.Numerics.Generic_Elementary_Functions
kono
parents:
diff changeset
33 -- with a type derived from type Float, as well as the preinstantiated
kono
parents:
diff changeset
34 -- version of this package for type Float.
kono
parents:
diff changeset
35 -- Prescribed results, including instances prescribed to raise
kono
parents:
diff changeset
36 -- exceptions, are examined in the test cases. In addition,
kono
parents:
diff changeset
37 -- certain evaluations are performed where the actual function result
kono
parents:
diff changeset
38 -- is compared with the expected result (within an epsilon range of
kono
parents:
diff changeset
39 -- accuracy).
kono
parents:
diff changeset
40 --
kono
parents:
diff changeset
41 -- TEST FILES:
kono
parents:
diff changeset
42 -- The following files comprise this test:
kono
parents:
diff changeset
43 --
kono
parents:
diff changeset
44 -- FXA5A00.A (foundation code)
kono
parents:
diff changeset
45 -- CXA5A06.A
kono
parents:
diff changeset
46 --
kono
parents:
diff changeset
47 --
kono
parents:
diff changeset
48 -- CHANGE HISTORY:
kono
parents:
diff changeset
49 -- 27 Mar 95 SAIC Initial prerelease version.
kono
parents:
diff changeset
50 -- 13 Jun 95 SAIC Incorporated use of Dont_Optimize procedure, and
kono
parents:
diff changeset
51 -- use of Result_Within_Range function overloaded for
kono
parents:
diff changeset
52 -- FXA5A00.New_Float_Type.
kono
parents:
diff changeset
53 -- 28 Feb 97 PWB.CTA Removed checks with explicit Cycle => 2.0*Pi
kono
parents:
diff changeset
54 --
kono
parents:
diff changeset
55 -- CHANGE NOTE:
kono
parents:
diff changeset
56 -- According to Ken Dritz, author of the Numerics Annex of the RM,
kono
parents:
diff changeset
57 -- one should never specify the cycle 2.0*Pi for the trigonometric
kono
parents:
diff changeset
58 -- functions. In particular, if the machine number for the first
kono
parents:
diff changeset
59 -- argument is not an exact multiple of the machine number for the
kono
parents:
diff changeset
60 -- explicit cycle, then the specified exact results cannot be
kono
parents:
diff changeset
61 -- reasonably expected. The affected checks in this test have been
kono
parents:
diff changeset
62 -- marked as comments, with the additional notation "pwb-math".
kono
parents:
diff changeset
63 -- Phil Brashear
kono
parents:
diff changeset
64 --!
kono
parents:
diff changeset
65
kono
parents:
diff changeset
66 with Ada.Numerics.Elementary_Functions;
kono
parents:
diff changeset
67 with Ada.Numerics.Generic_Elementary_Functions;
kono
parents:
diff changeset
68 with FXA5A00;
kono
parents:
diff changeset
69 with Report;
kono
parents:
diff changeset
70
kono
parents:
diff changeset
71 procedure CXA5A06 is
kono
parents:
diff changeset
72 begin
kono
parents:
diff changeset
73
kono
parents:
diff changeset
74 Report.Test ("CXA5A06", "Check that the functions Arccos and Arccosh " &
kono
parents:
diff changeset
75 "provide correct results");
kono
parents:
diff changeset
76
kono
parents:
diff changeset
77 Test_Block:
kono
parents:
diff changeset
78 declare
kono
parents:
diff changeset
79
kono
parents:
diff changeset
80 use Ada.Numerics;
kono
parents:
diff changeset
81 use FXA5A00;
kono
parents:
diff changeset
82
kono
parents:
diff changeset
83 package GEF is new Ada.Numerics.Generic_Elementary_Functions(New_Float);
kono
parents:
diff changeset
84 package EF renames Ada.Numerics.Elementary_Functions;
kono
parents:
diff changeset
85
kono
parents:
diff changeset
86 The_Result : Float;
kono
parents:
diff changeset
87 New_Float_Result : New_Float;
kono
parents:
diff changeset
88
kono
parents:
diff changeset
89 procedure Dont_Optimize_Float is new Dont_Optimize(Float);
kono
parents:
diff changeset
90 procedure Dont_Optimize_New_Float is new Dont_Optimize(New_Float);
kono
parents:
diff changeset
91
kono
parents:
diff changeset
92 begin
kono
parents:
diff changeset
93
kono
parents:
diff changeset
94 -- Testing of Arccos Function, both instantiated and pre-instantiated
kono
parents:
diff changeset
95 -- version.
kono
parents:
diff changeset
96
kono
parents:
diff changeset
97 -- Check that Argument_Error is raised by the Arccos function when the
kono
parents:
diff changeset
98 -- absolute value of the input parameter is greater than 1.0.
kono
parents:
diff changeset
99
kono
parents:
diff changeset
100 begin
kono
parents:
diff changeset
101 New_Float_Result := GEF.Arccos(New_Float(FXA5A00.One_Plus_Delta));
kono
parents:
diff changeset
102 Report.Failed("Argument_Error not raised by the Arccos function " &
kono
parents:
diff changeset
103 "when the input parameter is greater than 1.0");
kono
parents:
diff changeset
104 Dont_Optimize_New_Float(New_Float_Result, 1);
kono
parents:
diff changeset
105 exception
kono
parents:
diff changeset
106 when Argument_Error => null; -- OK, expected exception.
kono
parents:
diff changeset
107 when others =>
kono
parents:
diff changeset
108 Report.Failed("Unexpected exception raised by the Arccos " &
kono
parents:
diff changeset
109 "function when the input parameter is greater " &
kono
parents:
diff changeset
110 "than 1.0");
kono
parents:
diff changeset
111 end;
kono
parents:
diff changeset
112
kono
parents:
diff changeset
113 begin
kono
parents:
diff changeset
114 The_Result := EF.Arccos(-FXA5A00.Large);
kono
parents:
diff changeset
115 Report.Failed("Argument_Error not raised by the Arccos function " &
kono
parents:
diff changeset
116 "when the input parameter is a large negative value");
kono
parents:
diff changeset
117 Dont_Optimize_Float(The_Result, 2);
kono
parents:
diff changeset
118 exception
kono
parents:
diff changeset
119 when Argument_Error => null; -- OK, expected exception.
kono
parents:
diff changeset
120 when others =>
kono
parents:
diff changeset
121 Report.Failed("Unexpected exception raised by the Arccos " &
kono
parents:
diff changeset
122 "function when the input parameter is a " &
kono
parents:
diff changeset
123 "large negative value");
kono
parents:
diff changeset
124 end;
kono
parents:
diff changeset
125
kono
parents:
diff changeset
126
kono
parents:
diff changeset
127 -- Check the prescribed results of the Arccos function.
kono
parents:
diff changeset
128
kono
parents:
diff changeset
129 if GEF.Arccos(X => 1.0) /= 0.0 or
kono
parents:
diff changeset
130 EF.Arccos(1.0) /= 0.0
kono
parents:
diff changeset
131 then
kono
parents:
diff changeset
132 Report.Failed("Incorrect result returned by the Arccos function " &
kono
parents:
diff changeset
133 "when provided a parameter value of 0.0");
kono
parents:
diff changeset
134 end if;
kono
parents:
diff changeset
135
kono
parents:
diff changeset
136
kono
parents:
diff changeset
137 -- Check the results of the Arccos function with various input
kono
parents:
diff changeset
138 -- parameters.
kono
parents:
diff changeset
139
kono
parents:
diff changeset
140 if not Result_Within_Range(GEF.Arccos(0.77), 0.692, 0.001) or
kono
parents:
diff changeset
141 not Result_Within_Range( EF.Arccos(0.37), 1.19, 0.01) or
kono
parents:
diff changeset
142 not Result_Within_Range(GEF.Arccos(0.0), Pi/2.0, 0.01) or
kono
parents:
diff changeset
143 not Result_Within_Range( EF.Arccos(-0.11), 1.68, 0.01) or
kono
parents:
diff changeset
144 not Result_Within_Range(GEF.Arccos(-0.67), 2.31, 0.01) or
kono
parents:
diff changeset
145 not Result_Within_Range( EF.Arccos(-0.94), 2.79, 0.01) or
kono
parents:
diff changeset
146 not Result_Within_Range(GEF.Arccos(-1.0), Pi, 0.01)
kono
parents:
diff changeset
147 then
kono
parents:
diff changeset
148 Report.Failed("Incorrect result returned from the Arccos " &
kono
parents:
diff changeset
149 "function when provided a variety of input " &
kono
parents:
diff changeset
150 "parameters");
kono
parents:
diff changeset
151 end if;
kono
parents:
diff changeset
152
kono
parents:
diff changeset
153
kono
parents:
diff changeset
154 -- Testing of the Arccos function with specified Cycle parameter.
kono
parents:
diff changeset
155
kono
parents:
diff changeset
156 -- Check that Argument_Error is raised by the Arccos function, with
kono
parents:
diff changeset
157 -- specified Cycle parameter, when the absolute value of the input
kono
parents:
diff changeset
158 -- parameter is greater than 1.0.
kono
parents:
diff changeset
159
kono
parents:
diff changeset
160 begin
kono
parents:
diff changeset
161 --pwb-math: Next line: Changed 2.0*Pi to 360.0
kono
parents:
diff changeset
162 New_Float_Result := GEF.Arccos(New_Float(Large), Cycle => 360.0);
kono
parents:
diff changeset
163 Report.Failed("Argument_Error not raised by the Arccos function " &
kono
parents:
diff changeset
164 "with specified Cycle parameter, when the input " &
kono
parents:
diff changeset
165 "parameter is a large positive value");
kono
parents:
diff changeset
166 Dont_Optimize_New_Float(New_Float_Result, 3);
kono
parents:
diff changeset
167 exception
kono
parents:
diff changeset
168 when Argument_Error => null; -- OK, expected exception.
kono
parents:
diff changeset
169 when others =>
kono
parents:
diff changeset
170 Report.Failed("Unexpected exception raised by the Arccos " &
kono
parents:
diff changeset
171 "function with specified Cycle parameter, when " &
kono
parents:
diff changeset
172 "the input parameter is a large positive value");
kono
parents:
diff changeset
173 end;
kono
parents:
diff changeset
174
kono
parents:
diff changeset
175 begin
kono
parents:
diff changeset
176 --pwb-math: Next line: Changed 2.0*Pi to 360.0
kono
parents:
diff changeset
177 The_Result := EF.Arccos(FXA5A00.Minus_One_Minus_Delta, 360.0);
kono
parents:
diff changeset
178 Report.Failed("Argument_Error not raised by the Arccos function " &
kono
parents:
diff changeset
179 "with specified Cycle parameter, when the input " &
kono
parents:
diff changeset
180 "parameter is less than -1.0");
kono
parents:
diff changeset
181 Dont_Optimize_Float(The_Result, 4);
kono
parents:
diff changeset
182 exception
kono
parents:
diff changeset
183 when Argument_Error => null; -- OK, expected exception.
kono
parents:
diff changeset
184 when others =>
kono
parents:
diff changeset
185 Report.Failed("Unexpected exception raised by the Arccos " &
kono
parents:
diff changeset
186 "function with specified Cycle parameter, " &
kono
parents:
diff changeset
187 "when the input parameter is less than -1.0");
kono
parents:
diff changeset
188 end;
kono
parents:
diff changeset
189
kono
parents:
diff changeset
190
kono
parents:
diff changeset
191 -- Check that Argument_Error is raised by the Arccos function with
kono
parents:
diff changeset
192 -- specified cycle when the value of the Cycle parameter is zero or
kono
parents:
diff changeset
193 -- negative.
kono
parents:
diff changeset
194
kono
parents:
diff changeset
195 begin
kono
parents:
diff changeset
196 New_Float_Result := GEF.Arccos(X => 1.0, Cycle => 0.0 );
kono
parents:
diff changeset
197 Report.Failed("Argument_Error not raised by the Arccos function " &
kono
parents:
diff changeset
198 "with specified Cycle parameter, when the Cycle " &
kono
parents:
diff changeset
199 "parameter is 0.0");
kono
parents:
diff changeset
200 Dont_Optimize_New_Float(New_Float_Result, 5);
kono
parents:
diff changeset
201 exception
kono
parents:
diff changeset
202 when Argument_Error => null; -- OK, expected exception.
kono
parents:
diff changeset
203 when others =>
kono
parents:
diff changeset
204 Report.Failed("Unexpected exception raised by the Arccos " &
kono
parents:
diff changeset
205 "function with specified Cycle parameter, when " &
kono
parents:
diff changeset
206 "the Cycle parameter is 0.0");
kono
parents:
diff changeset
207 end;
kono
parents:
diff changeset
208
kono
parents:
diff changeset
209 begin
kono
parents:
diff changeset
210 The_Result := EF.Arccos(1.0, Cycle => -2.0*Pi);
kono
parents:
diff changeset
211 Report.Failed("Argument_Error not raised by the Arccos function " &
kono
parents:
diff changeset
212 "with specified Cycle parameter, when the Cycle " &
kono
parents:
diff changeset
213 "parameter is negative");
kono
parents:
diff changeset
214 Dont_Optimize_Float(The_Result, 6);
kono
parents:
diff changeset
215 exception
kono
parents:
diff changeset
216 when Argument_Error => null; -- OK, expected exception.
kono
parents:
diff changeset
217 when others =>
kono
parents:
diff changeset
218 Report.Failed("Unexpected exception raised by the Arccos " &
kono
parents:
diff changeset
219 "function with specified Cycle parameter, when " &
kono
parents:
diff changeset
220 "the Cycle parameter is negative");
kono
parents:
diff changeset
221 end;
kono
parents:
diff changeset
222
kono
parents:
diff changeset
223
kono
parents:
diff changeset
224 -- Check the prescribed result of the Arccos function with specified
kono
parents:
diff changeset
225 -- Cycle parameter.
kono
parents:
diff changeset
226
kono
parents:
diff changeset
227 --pwb-math: Next two lines: Changed 2.0*Pi to 360.0
kono
parents:
diff changeset
228 if GEF.Arccos(X => 1.0, Cycle => 360.0) /= 0.0 or
kono
parents:
diff changeset
229 EF.Arccos(1.0, 360.0) /= 0.0
kono
parents:
diff changeset
230 then
kono
parents:
diff changeset
231 Report.Failed("Incorrect result from the Arccos function with " &
kono
parents:
diff changeset
232 "specified Cycle parameter, when the input " &
kono
parents:
diff changeset
233 "parameter value is 1.0");
kono
parents:
diff changeset
234 end if;
kono
parents:
diff changeset
235
kono
parents:
diff changeset
236
kono
parents:
diff changeset
237 -- Check the results of the Arccos function, with specified Cycle
kono
parents:
diff changeset
238 -- parameter, with various input parameters.
kono
parents:
diff changeset
239
kono
parents:
diff changeset
240 if --pwb-math not Result_Within_Range(GEF.Arccos( 0.04, 2.0*Pi), 1.53, 0.01) or
kono
parents:
diff changeset
241 --pwb-math not Result_Within_Range( EF.Arccos( 0.14, 2.0*Pi), 1.43, 0.01) or
kono
parents:
diff changeset
242 --pwb-math not Result_Within_Range(GEF.Arccos( 0.57, 2.0*Pi), 0.96, 0.01) or
kono
parents:
diff changeset
243 --pwb-math not Result_Within_Range( EF.Arccos( 0.99, 2.0*Pi), 0.14, 0.01) or
kono
parents:
diff changeset
244 not Result_Within_Range(GEF.Arccos(-1.0, 360.0), 180.0, 0.1) or
kono
parents:
diff changeset
245 not Result_Within_Range(GEF.Arccos(-1.0, 100.0), 50.0, 0.1) or
kono
parents:
diff changeset
246 not Result_Within_Range(GEF.Arccos( 0.0, 360.0), 90.0, 0.1) or
kono
parents:
diff changeset
247 not Result_Within_Range(GEF.Arccos( 0.0, 100.0), 25.0, 0.1)
kono
parents:
diff changeset
248 then
kono
parents:
diff changeset
249 Report.Failed("Incorrect result returned from the Arccos " &
kono
parents:
diff changeset
250 "function with specified Cycle parameter, " &
kono
parents:
diff changeset
251 "when provided a variety of input parameters");
kono
parents:
diff changeset
252 end if;
kono
parents:
diff changeset
253
kono
parents:
diff changeset
254
kono
parents:
diff changeset
255
kono
parents:
diff changeset
256 -- Testing of Arccosh Function, both instantiated and pre-instantiated
kono
parents:
diff changeset
257 -- version.
kono
parents:
diff changeset
258
kono
parents:
diff changeset
259 -- Check that Argument_Error is raised by the Arccosh function when
kono
parents:
diff changeset
260 -- the value of the parameter X is less than 1.0.
kono
parents:
diff changeset
261
kono
parents:
diff changeset
262 begin
kono
parents:
diff changeset
263 New_Float_Result := GEF.Arccosh(New_Float(FXA5A00.One_Minus_Delta));
kono
parents:
diff changeset
264 Report.Failed("Argument_Error not raised by the Arccosh function " &
kono
parents:
diff changeset
265 "when the parameter value is less than 1.0");
kono
parents:
diff changeset
266 Dont_Optimize_New_Float(New_Float_Result, 7);
kono
parents:
diff changeset
267 exception
kono
parents:
diff changeset
268 when Argument_Error => null; -- OK, expected exception.
kono
parents:
diff changeset
269 when others =>
kono
parents:
diff changeset
270 Report.Failed("Unexpected exception raised by the Arccosh " &
kono
parents:
diff changeset
271 "function when given a parameter value less " &
kono
parents:
diff changeset
272 "than 1.0");
kono
parents:
diff changeset
273 end;
kono
parents:
diff changeset
274
kono
parents:
diff changeset
275 begin
kono
parents:
diff changeset
276 The_Result := EF.Arccosh(0.0);
kono
parents:
diff changeset
277 Report.Failed("Argument_Error not raised by the Arccosh function " &
kono
parents:
diff changeset
278 "when the parameter value is 0.0");
kono
parents:
diff changeset
279 Dont_Optimize_Float(The_Result, 8);
kono
parents:
diff changeset
280 exception
kono
parents:
diff changeset
281 when Argument_Error => null; -- OK, expected exception.
kono
parents:
diff changeset
282 when others =>
kono
parents:
diff changeset
283 Report.Failed("Unexpected exception raised by the Arccosh " &
kono
parents:
diff changeset
284 "function when given a parameter value of 0.0");
kono
parents:
diff changeset
285 end;
kono
parents:
diff changeset
286
kono
parents:
diff changeset
287 begin
kono
parents:
diff changeset
288 New_Float_Result := GEF.Arccosh(New_Float(-FXA5A00.Large));
kono
parents:
diff changeset
289 Report.Failed("Argument_Error not raised by the Arccosh function " &
kono
parents:
diff changeset
290 "when the large negative parameter value");
kono
parents:
diff changeset
291 Dont_Optimize_New_Float(New_Float_Result, 9);
kono
parents:
diff changeset
292 exception
kono
parents:
diff changeset
293 when Argument_Error => null; -- OK, expected exception.
kono
parents:
diff changeset
294 when others =>
kono
parents:
diff changeset
295 Report.Failed("Unexpected exception raised by the Arccosh " &
kono
parents:
diff changeset
296 "function when given a large negative parameter " &
kono
parents:
diff changeset
297 "value");
kono
parents:
diff changeset
298 end;
kono
parents:
diff changeset
299
kono
parents:
diff changeset
300
kono
parents:
diff changeset
301 -- Check the prescribed results of the Arccosh function.
kono
parents:
diff changeset
302
kono
parents:
diff changeset
303 if GEF.Arccosh(X => 1.0) /= 0.0 or
kono
parents:
diff changeset
304 EF.Arccosh(1.0) /= 0.0
kono
parents:
diff changeset
305 then
kono
parents:
diff changeset
306 Report.Failed("Incorrect result returned by the Arccosh " &
kono
parents:
diff changeset
307 "function when provided a parameter value of 0.0");
kono
parents:
diff changeset
308 end if;
kono
parents:
diff changeset
309
kono
parents:
diff changeset
310
kono
parents:
diff changeset
311 -- Check the results of the Arccosh function with various input
kono
parents:
diff changeset
312 -- parameters.
kono
parents:
diff changeset
313
kono
parents:
diff changeset
314 if not Result_Within_Range(GEF.Arccosh(1.03), 0.244, 0.001) or
kono
parents:
diff changeset
315 not Result_Within_Range( EF.Arccosh(1.28), 0.732, 0.001) or
kono
parents:
diff changeset
316 not Result_Within_Range(GEF.Arccosh(1.50), 0.962, 0.001) or
kono
parents:
diff changeset
317 not Result_Within_Range( EF.Arccosh(1.77), 1.17, 0.01) or
kono
parents:
diff changeset
318 not Result_Within_Range(GEF.Arccosh(2.00), 1.32, 0.01) or
kono
parents:
diff changeset
319 not Result_Within_Range( EF.Arccosh(4.30), 2.14, 0.01) or
kono
parents:
diff changeset
320 not Result_Within_Range(GEF.Arccosh(6.90), 2.62, 0.01)
kono
parents:
diff changeset
321 then
kono
parents:
diff changeset
322 Report.Failed("Incorrect result returned from the Arccosh " &
kono
parents:
diff changeset
323 "function when provided a variety of input " &
kono
parents:
diff changeset
324 "parameters");
kono
parents:
diff changeset
325 end if;
kono
parents:
diff changeset
326
kono
parents:
diff changeset
327
kono
parents:
diff changeset
328 exception
kono
parents:
diff changeset
329 when others => Report.Failed ("Exception raised in Test_Block");
kono
parents:
diff changeset
330 end Test_Block;
kono
parents:
diff changeset
331
kono
parents:
diff changeset
332 Report.Result;
kono
parents:
diff changeset
333
kono
parents:
diff changeset
334 end CXA5A06;