-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50bb0fe
commit fd60827
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
This project wraps the [JavaSMT solver wrapper](https://github.com/sosy-lab/java-smt) into our common interfaces for solvers (located in the [solver](../solver) project). | ||
Normally, only the factory class should be used from this project to instantiate a new solver and then the common interfaces should be preferred. | ||
Normally, only the factory class should be used from this project to instantiate a new solver and then the common interfaces should be preferred. The [factory](./src/main/java/hu/bme/mit/theta/solver/javasmt/JavaSMTSolverFactory.java) needs a [Solvers](https://github.com/sosy-lab/java-smt/blob/12ceedfa6a8412268f77b8a7af7fb7a1b97bbd29/src/org/sosy_lab/java_smt/SolverContextFactory.java#L51-L61) enum value, or the [manager](./src/main/java/hu/bme/mit/theta/solver/javasmt/JavaSMTSolverManager.java) needs a string with the same values after the `JavaSMT:` prefix. |