aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/viatra-runtime-base-itc/src/main/java/tools/refinery/viatra/runtime/base/itc/alg/representative/RepresentativeObserver.java
blob: 93cce1ead3d03593a3f5dc21de7f7ddfa80aaaf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.viatra.runtime.base.itc.alg.representative;

import tools.refinery.viatra.runtime.matchers.util.Direction;

public interface RepresentativeObserver {
	void tupleChanged(Object node, Object representative, Direction direction);
}