Skip to content

Commit

Permalink
chore: minor cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
ennioVisco committed Jun 16, 2024
1 parent e91d7ac commit d6f049b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ group = PROJECT_GROUP
plugins {
// Environment
id("me.filippov.gradle.jvm.wrapper") version "0.14.0"
kotlin("jvm") version "2.0.0-RC2"
kotlin("jvm") version "2.0.0"

// GUI
id("org.openjfx.javafxplugin") version "0.1.0"
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/spec.nyt-flashes.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ val stocksHidden = Spec.atoms[0]
// Final formula
Spec.formula = screen and not(stocksHidden) implies
not(
eventually(stocksHidden) within (Interval(0, 1))
and (eventually(not(stocksHidden)) within (Interval(0, 1)))
eventually(stocksHidden) within Interval(0, 1)
and (eventually(not(stocksHidden)) within Interval(0, 1))
)

0 comments on commit d6f049b

Please sign in to comment.