Decision Tables Presentation Algorithm

What is the best algorithm to use if you want to save decision tables in code, I looked at the Adjacency matrix and the Binary Tree might think that this is the right direction? What other options do I have?

+3
source share
1 answer

If your focus is in space (for very large decision tables), you might consider using Binary Decision Schemes (BDDs). However, the canonical form will not tell you what action to take, just give true / false answers for a large “input” of logical input variables. This is less efficient than a decision table, but very useful for certain applications.

+2
source

Source: https://habr.com/ru/post/1747673/


All Articles