Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yanntm committed Apr 9, 2024
1 parent 1890596 commit 70f376b
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,11 @@ public boolean applyOrder(Support supp) {
return false;
}

/**
* Check if the specification can be decomposed, i.e. if no properties contain
* addition or comparison of variables in different subcomponents.
* @return true if the specification can be decomposed and SDD can handle the operations
*/
private boolean canDecompose() {
boolean canDecompose = true;
for (Property prop : spec.getProperties()) {
Expand Down

0 comments on commit 70f376b

Please sign in to comment.