aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store/src/main/java/tools/refinery/store/statecoding/StateCodeCalculatorFactory.java
blob: 04e17a13912e749acdd3984881e719f52ba1e641 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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 java.util.List;

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