...
- What would be the best data structure for handing this kind of data?
- How can the data structure be modified to optimize the data handling?
- How to handle the data in a efficient way?
How to convert the data from the agent to the storage data structure(relational?) or tree structure?
- How to reconstruct the invocation tree structure from the provided data?
Current solution (state)
(Previous solution approaches regarding this topic One approach, that were already discussed in the master thesis.)One approach would be , were to change the data structure from hierarchy based to relation based.
Potential candidates for this is the Adjacency list and Pre-order Traversing.
TODO: Ask advisor about this.
Currently data is handled in a relational data structure.
New approaches / solution
...