Skip to content

Commit

Permalink
moved models to casestudies
Browse files Browse the repository at this point in the history
  • Loading branch information
uuqjz committed Jul 1, 2024
1 parent f9b8fcb commit 30e1622
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ public void cwaToDfd() {
}

private void testSpecificModel(String inputModel, String inputFile, String modelLocation, String webTarget) {
final var usageModelPath = Paths.get("models", inputModel, inputFile + ".usagemodel")
final var usageModelPath = Paths.get("casestudies", inputModel, inputFile + ".usagemodel")
.toString();
final var allocationPath = Paths.get("models", inputModel, inputFile + ".allocation")
final var allocationPath = Paths.get("casestudies", inputModel, inputFile + ".allocation")
.toString();
final var nodeCharPath = Paths.get("models", inputModel, inputFile + ".nodecharacteristics")
final var nodeCharPath = Paths.get("casestudies", inputModel, inputFile + ".nodecharacteristics")
.toString();

DataFlowConfidentialityAnalysis analysis = new PCMDataFlowConfidentialityAnalysisBuilder().standalone()
Expand Down

0 comments on commit 30e1622

Please sign in to comment.