aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse/src/main/java/tools/refinery/store/dse/propagation/Propagator.java
blob: c6b4e1c9b75d447e479cac95f0b68dd565c4f8e8 (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.propagation;

import tools.refinery.store.model.Model;
import tools.refinery.store.model.ModelStoreBuilder;

@FunctionalInterface
public interface Propagator {
	default void configure(ModelStoreBuilder storeBuilder) {
	}

	BoundPropagator bindToModel(Model model);
}