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

import org.eclipse.collections.api.set.primitive.IntSet;
import tools.refinery.store.model.Interpretation;
import tools.refinery.store.model.Model;

import java.util.List;

public interface StateCodeCalculatorFactory {
	StateCodeCalculator create(Model model, List<? extends Interpretation<?>> interpretations, IntSet individuals);
}