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

import tools.refinery.logic.literal.Literal;
import tools.refinery.logic.term.DataVariable;

import java.util.Collection;

@FunctionalInterface
public interface ClauseCallback2Data2<T1, T2> {
	Collection<Literal> toLiterals(DataVariable<T1> x1, DataVariable<T2> x2);
}