Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ sysmlGitlab = https://git.rwth-aachen.de/api/v4/projects/37093/packages/m

# Dependencies
mc_version = 7.8.0
mclsg_version = 7.8.3
mclsg_version = 7.8.5
se_commons_version = 7.8.0
assertj_version = 3.21.0
junit_version = 5.8.2

# Version of published artifacts
version = 7.8.28
version = 7.8.29
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,6 @@ public boolean needsSymbols() {
return true;
}

@Override
public void runAllCoCos(ASTSysMLModel ast){
if(System.getenv("SYSML_DEFAULT_COCOS") == null) {
tool.runDefaultCoCos(ast);
}
// Runs additional (verification-specific) CoCos when variable is set.
// Defaults to not running them.
if(System.getenv("SYSML_ADDITIONAL_COCOS") != null) {
tool.runAdditionalCoCos(ast);
}
}

@Override
public void runCoCosForAllDocuments(){
documentManager.getAllDocumentInformation(new SysMLv2DocumentInformationFilter()).forEach(di -> {
Expand Down
Loading