aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query-viatra/src/main/java/tools/refinery/store/query/viatra/internal/rete/recipe/RepresentativeElectionRecipe.java
blob: def825c260728c93b3934c7be770492d1e38bb3a (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.query.viatra.internal.rete.recipe;

import org.eclipse.viatra.query.runtime.rete.recipes.AlphaRecipe;
import tools.refinery.store.query.literal.Connectivity;

public interface RepresentativeElectionRecipe extends AlphaRecipe {
	Connectivity getConnectivity();

	void setConnectivity(Connectivity connectivity);

	int getArity();
}