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

import tools.refinery.logic.literal.Literal;

@FunctionalInterface
public interface AssignedValue<T> {
	Literal toLiteral(DataVariable<T> targetVariable);
}