aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse/src/main/java/tools/refinery/store/dse/Strategy.java
blob: cef43386474763de079a963ddec901caddc41ebf (plain) (blame)
1
2
3
4
5
6
7
8
package tools.refinery.store.dse;

public interface Strategy {

	public void initStrategy(DesignSpaceExplorationAdapter designSpaceExplorationAdapter);

	public void explore();
}