Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
milesstoetzner committed Oct 24, 2024
1 parent dd7f1e1 commit 214263e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/enricher/elements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/graph/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit 214263e

Please sign in to comment.