aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-partial/src/main/java/tools/refinery/store/partial/internal/PartialInterpretationBuilderImpl.java
blob: 5853aeaf517ddfec8f5b19d99332b9420937f491 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package tools.refinery.store.partial.internal;

import tools.refinery.store.adapter.AbstractModelAdapterBuilder;
import tools.refinery.store.model.ModelStore;
import tools.refinery.store.model.ModelStoreBuilder;
import tools.refinery.store.partial.PartialInterpretationBuilder;
import tools.refinery.store.partial.literal.Modality;
import tools.refinery.store.query.Dnf;

public class PartialInterpretationBuilderImpl extends AbstractModelAdapterBuilder implements PartialInterpretationBuilder {
	public PartialInterpretationBuilderImpl(ModelStoreBuilder storeBuilder) {
		super(storeBuilder);
	}

	@Override
	public PartialInterpretationBuilder liftedQuery(Dnf liftedQuery) {
		return null;
	}

	@Override
	public Dnf lift(Modality modality, Dnf query) {
		return null;
	}

	@Override
	public PartialInterpretationStoreAdapterImpl createStoreAdapter(ModelStore store) {
		return null;
	}
}