Skip to content
Snippets Groups Projects
Commit ac74c275 authored by Imco van Gent's avatar Imco van Gent
Browse files

Added fix to add independent competences to VISTOMS.

Former-commit-id: 5992b4d2d983122830750bb89fc9c2f121163d90
parent c22bb204
No related branches found
No related tags found
No related merge requests found
Pipeline #192726 canceled
......@@ -419,6 +419,12 @@ class VistomsMixin(object):
full_graph['attributes']['variables'] = list(set(full_graph['attributes']['variables']))
full_graph[coordinator_str] = list(set(full_graph[coordinator_str]))
# Add holes in the graph as source functions
hole_functions = self.find_all_nodes(category='function', subcategory='independent')
for hole in hole_functions:
full_graph[hole] = []
full_graph['attributes']['tools'].append(hole)
# Write log output
logger.debug('Successfully created full_graph_data dictionary.')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment