aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query/src/main/java/tools/refinery/store/query/term/bool/BoolXorTerm.java
blob: 7478b8a56d05820c13d9753b934473cd910761a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.query.term.bool;

import tools.refinery.store.query.substitution.Substitution;
import tools.refinery.store.query.term.Term;

public class BoolXorTerm extends BoolBinaryTerm {
	public BoolXorTerm(Term<Boolean> left, Term<Boolean> right) {
		super(left, right);
	}

	@Override
	public Term<Boolean> doSubstitute(Substitution substitution, Term<Boolean> substitutedLeft,
									  Term<Boolean> substitutedRight) {
		return new BoolXorTerm(substitutedLeft, substitutedRight);
	}

	@Override
	protected Boolean doEvaluate(Boolean leftValue, Boolean rightValue) {
		return leftValue ^ rightValue;
	}

	@Override
	public String toString() {
		return "(%s ^^ %s)".formatted(getLeft(), getRight());
	}
}