-
Notifications
You must be signed in to change notification settings - Fork 0
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
3e9acd0
commit 7f8e2c7
Showing
10 changed files
with
126 additions
and
110 deletions.
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,19 @@ | ||
# ratio4J | ||
Java API for the oRatio solver | ||
|
||
Java API for the [oRatio](https://github.com/ratioSolver/oRatio) solver. | ||
|
||
## Installation | ||
|
||
Recursively clone this repository through `git clone --recurse-submodules https://github.com/ratioSolver/ratio4J`. | ||
|
||
Compile and install the native libraries. | ||
|
||
```shell | ||
cd src/main/cpp | ||
mkdir build | ||
cd build | ||
cmake .. | ||
sudo make install | ||
``` | ||
|
||
Go back at ratio4J level and compile the Java code using `mvn install`. |
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
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
Submodule plexa
updated
7 files
+2 −1 | CMakeLists.txt | |
+3 −0 | README.md | |
+1 −1 | extern/solver | |
+40 −1 | include/executor.h | |
+8 −41 | include/timer.h | |
+68 −1 | src/executor.cpp | |
+29 −0 | src/timer.cpp |
48 changes: 48 additions & 0 deletions
48
src/main/cpp/include/it_cnr_istc_pst_oratio_TimelinesExecutor.h
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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