diff --git a/src/enricher/elements.ts b/src/enricher/elements.ts index 5ca466501..d0876bcf5 100644 --- a/src/enricher/elements.ts +++ b/src/enricher/elements.ts @@ -32,6 +32,11 @@ export class ElementEnricher { return candidates } + /** + * This is not part of the VDMM method but of our prototype! + * This is just attaching the DTSMs to the components. + * However, we might add a check that manually modeled technology assignments actually support the scenario. + */ private enrichImplementations() { // for backwards compatibility and testing purposed, continue if, e.g., no rules at all exists if (utils.isEmpty(this.graph.plugins.technology)) return diff --git a/src/graph/node.ts b/src/graph/node.ts index 425a6de8d..d2fcd9ab5 100644 --- a/src/graph/node.ts +++ b/src/graph/node.ts @@ -66,6 +66,7 @@ export default class Node extends Element { return this.name } + // TODO: NEXT: adapt this to external component /** * Technology is required if type is not abstract */