aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/logic/src/main/java/tools/refinery/logic/term/int_/IntBinaryTerm.java
blob: 9543c21f849817542f61204a41312d1bf6d9ba5d (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.int_;

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

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