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

import tools.refinery.store.dse.transition.RuleBuilder;
import tools.refinery.logic.term.NodeVariable;

@FunctionalInterface
public interface RuleCallback2 {
	void accept(RuleBuilder builder, NodeVariable p1, NodeVariable p2);
}