What sort of graph to represent this business logic decision tree?
- by Nick Miller
How would I usually represent this business logic in a graph?
A is true if
B is true or
C is true
C is true if
D is true and
E is true and
F is true
Is it a directed acyclic graph? How do I represent the 'and'/'or' logic in the graph, in graph terminology?
(I am looking for the correct graph terminology, so I can focus my reading.)