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

public interface CanNegate<T extends CanNegate<T>> extends Literal {
	T negate();
}