Checking the completeness of the rules - Gnorion/BizVR GitHub Wiki
This decision table not cover the following combinations of conditions:
if length in[0..10] and height>=10 then result not specified
if length in(10..20] and height<=10 then result not specified
if length<0 and height<=10 then result not specified
if length<0 and height>=10 then result not specified
if length>20 and height<=10 then result not specified
if length>20 and height>=10 then result not specified
Here's one possible way this can be resolved:
Which corresponds to these rules in English:
if length in [0..10] then group is 'A'
if length in (10..20] and height >= 10 then group is 'B'
if length in (10..20] and height < 10 then group is 'C'
if length < 0 or > 20 then group is 'error'