aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-reasoning/src/main/java/tools/refinery/store/reasoning/PartialInterpretation.java
blob: 99656da8f6c61ae90963c5480efe50983f8b70c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package tools.refinery.store.reasoning;

import tools.refinery.store.reasoning.representation.PartialSymbol;
import tools.refinery.store.map.Cursor;
import tools.refinery.store.tuple.Tuple;

public non-sealed interface PartialInterpretation<A, C> extends AnyPartialInterpretation {
	@Override
	PartialSymbol<A, C> getPartialSymbol();

	A get(Tuple key);

	Cursor<Tuple, A> getAll();

	Cursor<Tuple, A> getAllErrors();

	MergeResult merge(Tuple key, A value);

	C getConcrete(Tuple key);

	Cursor<Tuple, C> getAllConcrete();
}