Skip to content

Commit

Permalink
remove irrelevant TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
danthe1st committed Sep 26, 2024
1 parent d22c1d7 commit 48ecbcc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ public record GraphPattern(
List<GPNode> returnedNodes,
Map<String, GPNode> actorsToNodes) {

// TODO figure out whether categories are necessary and (if so) add them

public GraphPattern {
Objects.requireNonNull(graph);
Objects.requireNonNull(mutualExclusionConstraints);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ private Weaving(List<GraphPattern> inputPatterns) {

private GraphPattern run() {
findEquivalences();
// TODO if needed: combined pattern has all categories of each single pattern (currently there are no categories)
LinkedHashMap<EdgeInGraphPattern, GPEdge> edgeMapping = createEdges();
GPGraph graph = new GPGraph(new ArrayList<>(new HashSet<>(vertexToNodes.values())), new ArrayList<>(edgeMapping.values()));
List<MutualExclusionConstraint> mutualExclusionConstraints = createMutualExclusionConstraints();
Expand Down

0 comments on commit 48ecbcc

Please sign in to comment.