I have to model dependencies between components in a environment, so every component has a list of self dependencies. So if I want to see what  component i can enable I have to determinate if every dependency is solved. Manually for one it works, but need to automate this process. So I could think:

  • Dependency Binary Tree
  • Dependency from Directry Acyclic Graph
  • Dependency for Service Dependency Graph

So any suggestion  about the best way?

Similar questions and discussions