Fixed
Details
Assignee
JeffJJeffJReporter
(Sam Heard) inactive(Sam Heard) inactivePriority
Trivial
Details
Details
Assignee
JeffJ
JeffJReporter
(Sam Heard) inactive
(Sam Heard) inactivePriority
Created March 4, 2007 at 12:00 AM
Updated March 7, 2007 at 12:00 AM
Resolved March 7, 2007 at 12:00 AM
Currently, the range of Integer (Real, Date, etc) of the form
0 > x <= 1000
is not handled. Nor are the other possible combinations:
0 >= x < 1000
0 > x < 1000
Only the inclusive range is handled, i.e. 0 >= x <= 1000, expressed as
1..1000
in ADL.
ADL (both dADL and cADL) needs to include the other forms, using syntax like:
>0..1000
0..<1000
>0..<1000