Skip to content

Commit

Permalink
added gradle caching
Browse files Browse the repository at this point in the history
  • Loading branch information
ennioVisco committed Jul 5, 2023
1 parent 505be33 commit 146e96e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 216 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ xtext-gen
*.asv
output/
api_resources/
.ipynb_checkpoints/

# Matlab & Simulink caches
slprj
Expand Down
214 changes: 0 additions & 214 deletions .ipynb_checkpoints/getting_started-checkpoint.ipynb

This file was deleted.

1 change: 1 addition & 0 deletions engine/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@
exports eu.quanticol.moonlight.core.io;
exports eu.quanticol.moonlight.offline.signal;
exports eu.quanticol.moonlight.space;
exports eu.quanticol.moonlight.io;
}
4 changes: 3 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Gradle config
org.gradle.caching=true
# org.gradle.configuration-cache=true # TODO: broken in Dokka, hopefully they will fix
org.gradle.parallel=true
org.gradle.configuration-cache=true # TODO: broken in Dokka, hopefully they will fix
org.gradle.kotlin.dsl.allWarningsAsErrors=true
2 changes: 1 addition & 1 deletion python/src/moonlight/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def isTemporal(self):

def isSpatialTemporal(self):
'''returns if this is a spatial-temporal script'''
return self.Script.isSpatialTemporal()
return self.script.isSpatialTemporal()

def getMonitor(self, formulaName):
'''gets the monitor associated to a target the fomula'''
Expand Down

0 comments on commit 146e96e

Please sign in to comment.