/* * SPDX-FileCopyrightText: 2023 The Refinery Authors * * 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 ActionCallback2 { List toLiterals(NodeVariable v1, NodeVariable v2); }