aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse/src/main/java/tools/refinery/store/dse/transition/statespace/SolutionStore.java
blob: d1bfaa79bef4eb85e742ab4d4bd763b96927c976 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.dse.transition.statespace;

import tools.refinery.store.dse.transition.VersionWithObjectiveValue;

import java.util.List;
import java.util.concurrent.Future;

public interface SolutionStore {
	boolean submit(VersionWithObjectiveValue version);
	List<VersionWithObjectiveValue> getSolutions();
	boolean hasEnoughSolution();
}