-
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.
Merge pull request #54 from PalladioSimulator/prism_process
Prism process
- Loading branch information
Showing
23 changed files
with
287 additions
and
302 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
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
2 changes: 1 addition & 1 deletion
2
...rg.palladiosimulator.simexp.pcm.prism.wrapper.linux.gtk.x86_64/os/linux/x86_64/.gitignore
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 +1 @@ | ||
*.so | ||
* |
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
10 changes: 5 additions & 5 deletions
10
...86_64/src/main/resources/org/palladiosimulator/simexp/pcm/prism/wrapper/library_list.json
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,5 +1,5 @@ | ||
{ | ||
"prefix": "lib", | ||
"extension": ".so", | ||
"libraries": ["dd", "dv", "jdd", "lpsolve55", "lpsolve55j", "odd", "prismhybrid", "prismmtbdd", "prismsparse", "prism"] | ||
} | ||
{ | ||
"architecture": "linux.gtk.x86_64", | ||
"folder": "x86_64", | ||
"binaryExtension": "" | ||
} |
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
2 changes: 1 addition & 1 deletion
2
....palladiosimulator.simexp.pcm.prism.wrapper.win32.win32.x86_64/os/win32/x86_64/.gitignore
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 +1 @@ | ||
*.dll | ||
* |
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
10 changes: 5 additions & 5 deletions
10
...86_64/src/main/resources/org/palladiosimulator/simexp/pcm/prism/wrapper/library_list.json
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,5 +1,5 @@ | ||
{ | ||
"prefix": "", | ||
"extension": ".dll", | ||
"libraries": ["dd", "dv", "jdd", "lpsolve55", "lpsolve55j", "odd", "prism", "prismsparse", "prismmtbdd", "prismhybrid"] | ||
} | ||
{ | ||
"architecture": "win32.win32.x86_64", | ||
"folder": "x86_64", | ||
"binaryExtension": ".bat" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,4 @@ source.. = src/ | |
output.. = target/ | ||
bin.includes = META-INF/,\ | ||
plugin.xml,\ | ||
lib/,\ | ||
.,\ | ||
lib/*.jar | ||
. |
2 changes: 0 additions & 2 deletions
2
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper/lib/.gitignore
This file was deleted.
Oops, something went wrong.
Empty file.
70 changes: 0 additions & 70 deletions
70
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper/pom.xml
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
...cm.prism.wrapper/src/de/fzi/srp/simulatedexperience/prism/wrapper/service/IOFunction.java
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package de.fzi.srp.simulatedexperience.prism.wrapper.service; | ||
|
||
import java.io.IOException; | ||
|
||
@FunctionalInterface | ||
public interface IOFunction<T> { | ||
void accept(T t) throws IOException; | ||
} |
Oops, something went wrong.