How to express multi condition rules with flow diagram or truth table
I have a below mentioned multiple variable which match with the other variables and gives output like FALSE
, HOLD
or TRUE
.
I have tried to represent it here in table format.
Variable Condition
Var1 Var2 Con1 Con2 Con3 Con4 Con5
A A1 Hold True True False Hold
A E1 Hold True True False Hold
A D1 Hold True True False Hold
D A1 Hold True True False Hold
D E1 Hold True True False Hold
E A1 Hold True True False Hold
E D1 True True True False Hold
D A1 True True True True Hold
How should I present the above mentioned structure in flow diagram or in simple English language by writing it on technical requirement document.
The purpose is to make the development team to understand that each condition should be check in a sequence from FALSE
, HOLD
& TRUE
(i.e. If any condition match with FALSE
then break the loop and mark it as a FALSE
else check HOLD
condition and last TRUE
).