aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse/src/main/java/tools/refinery/store/dse/internal/Activation.java
blob: f1de00e6739256dcb635d64eccb622097e1065f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
package tools.refinery.store.dse.internal;

import tools.refinery.store.tuple.Tuple;

public record Activation(TransformationRule transformationRule, Tuple activation) {
	public boolean fire() {
		return transformationRule.fireActivation(activation);
	}
}