aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query/src/main/java/tools/refinery/store/query/equality/DnfEqualityChecker.java
blob: 4a8bee3bdb361502747ef018e80fca6e66a98e2d (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.store.query.equality;

import tools.refinery.store.query.dnf.Dnf;

@FunctionalInterface
public interface DnfEqualityChecker {
	boolean dnfEqual(Dnf left, Dnf right);
}