Skip to content

Commit

Permalink
Forgot epxloration event
Browse files Browse the repository at this point in the history
  • Loading branch information
Rojods committed Jul 10, 2024
1 parent ecae890 commit d7360ec
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ lazy val common = (project in file("scala-common"))
// name := "idesyde-scala-common",
libraryDependencies ++= Seq(
"com.lihaoyi" %% "upickle" % upickleVersion,
"com.github.forsyde.IDeSyDe" % "build-java-core" % globalIDeSyDeJavaVersion,
"com.github.forsyde.IDeSyDe" % "java-core" % globalIDeSyDeJavaVersion,
// "com.github.forsyde.IDeSyDe" % "build-java-blueprints" % globalIDeSyDeJavaVersion,
"org.jgrapht" % "jgrapht-core" % jgraphtVersion,
// ("org.scala-graph" %% "graph-core" % scalaGraphVersion).cross(CrossVersion.for3Use2_13),
Expand Down
10 changes: 10 additions & 0 deletions java-core/src/main/java/idesyde/core/ExplorationEvent.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package idesyde.core;

import java.util.Optional;

public record ExplorationEvent(
Optional<ExplorationSolution> solution,
Boolean optimalityProved
) {

}

0 comments on commit d7360ec

Please sign in to comment.