aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse/src/main/java/tools/refinery/store/dse/transition/callback/ActionCallback3.java
blob: a9b1d334e471320baae9d998cef4bf2f1cc2dc4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SPDX-FileCopyrightText: 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.actions.ActionLiteral;
import tools.refinery.store.query.term.NodeVariable;

import java.util.List;

@FunctionalInterface
public interface ActionCallback3 {
	List<ActionLiteral> toLiterals(NodeVariable v1, NodeVariable v2, NodeVariable v3);
}