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

import tools.refinery.store.model.Model;
import tools.refinery.store.reasoning.seed.ModelSeed;

@FunctionalInterface
public interface PartialModelInitializer {
	void initialize(Model model, ModelSeed modelSeed);
}