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

import tools.refinery.logic.term.BinaryTerm;
import tools.refinery.logic.term.Term;

public abstract class RealBinaryTerm extends BinaryTerm<Double, Double, Double> {
	protected RealBinaryTerm(Term<Double> left, Term<Double> right) {
		super(Double.class, Double.class, Double.class, left, right);
	}
}