aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse/src/main/java/tools/refinery/store/dse/Strategy.java
diff options
context:
space:
mode:
authorLibravatar nagilooh <ficsorattila96@gmail.com>2023-08-02 14:07:35 +0200
committerLibravatar nagilooh <ficsorattila96@gmail.com>2023-08-02 14:07:35 +0200
commitc93d455d2459c2fbe0cfce7693d592986f65d44c (patch)
treecd29acd462c7934ed26ba1a7370b721033841e63 /subprojects/store-dse/src/main/java/tools/refinery/store/dse/Strategy.java
parentMerge remote-tracking branch 'origin/main' into design-space-exploration (diff)
downloadrefinery-c93d455d2459c2fbe0cfce7693d592986f65d44c.tar.gz
refinery-c93d455d2459c2fbe0cfce7693d592986f65d44c.tar.zst
refinery-c93d455d2459c2fbe0cfce7693d592986f65d44c.zip
Move DSE to new subproject
Diffstat (limited to 'subprojects/store-dse/src/main/java/tools/refinery/store/dse/Strategy.java')
-rw-r--r--subprojects/store-dse/src/main/java/tools/refinery/store/dse/Strategy.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/subprojects/store-dse/src/main/java/tools/refinery/store/dse/Strategy.java b/subprojects/store-dse/src/main/java/tools/refinery/store/dse/Strategy.java
new file mode 100644
index 00000000..cef43386
--- /dev/null
+++ b/subprojects/store-dse/src/main/java/tools/refinery/store/dse/Strategy.java
@@ -0,0 +1,8 @@
1package tools.refinery.store.dse;
2
3public interface Strategy {
4
5 public void initStrategy(DesignSpaceExplorationAdapter designSpaceExplorationAdapter);
6
7 public void explore();
8}