From 659945ecb58ad2ad3d7e6c5bc988cba146cba85d Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 5 Mar 2001 15:45:49 -0500 Subject: [svn-r3547] Purpose: Small Fix Description: Modified ``max_dims'' so that it is a truely recursive definition vis-a-vis (that's French!) the BNF stuff. Solution: Changed the max_dims ::= ( i_0, i_1, ...) where i_k is either an integer or UNLIMITED to something like: ::= '(' ')' ::= | , ::= | H5S_UNLIMITED Platforms tested: PDP-10 --- doc/html/ddl.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/html/ddl.html b/doc/html/ddl.html index 015f436..e6adaec 100644 --- a/doc/html/ddl.html +++ b/doc/html/ddl.html @@ -190,7 +190,11 @@ This section contains a brief explanation of the symbols used in the DDL. <current_dims> ::= <dims> -<max_dims> ::= (i1, i2, ... ) where ik is an integer or H5S_UNLIMITED +<max_dims> ::= `(' <max_dim_list> `)' + +<max_dim_list> ::= <max_dim> | <max_dim>, <max_dim_list> + +<max_dim> ::= <int_value> | H5S_UNLIMITED <complex_space_definition> ::= TBD -- cgit v0.12