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

import tools.refinery.store.adapter.ModelAdapter;
import tools.refinery.store.reasoning.refinement.RefinementResult;
import tools.refinery.store.reasoning.scope.internal.ScopePropagatorBuilderImpl;

public interface ScopePropagatorAdapter extends ModelAdapter {
	@Override
	ScopePropagatorStoreAdapter getStoreAdapter();

	RefinementResult propagate();

	static ScopePropagatorBuilder builder() {
		return new ScopePropagatorBuilderImpl();
	}
}