What sort of graph to represent this business logic decision tree?
Posted
by Nick Miller
on Stack Overflow
See other posts from Stack Overflow
or by Nick Miller
Published on 2010-03-15T05:29:36Z
Indexed on
2010/03/15
5:49 UTC
Read the original article
Hit count: 369
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.)
© Stack Overflow or respective owner