summaryrefslogtreecommitdiffstats
path: root/subprojects/store-reasoning/src/main
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2024-04-26 20:48:40 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2024-04-26 20:49:24 +0200
commitb5085fa78147559d1999e5c2fb3d17b6fa74d5bf (patch)
treed8707f37f4bd00edea9aa20f1cf4e4571122bc01 /subprojects/store-reasoning/src/main
parentMerge pull request #58 from graphs4value/docs (diff)
downloadrefinery-b5085fa78147559d1999e5c2fb3d17b6fa74d5bf.tar.gz
refinery-b5085fa78147559d1999e5c2fb3d17b6fa74d5bf.tar.zst
refinery-b5085fa78147559d1999e5c2fb3d17b6fa74d5bf.zip
fix(reasoning): default assertions for containment references
Diffstat (limited to 'subprojects/store-reasoning/src/main')
-rw-r--r--subprojects/store-reasoning/src/main/java/tools/refinery/store/reasoning/translator/containment/ContainmentLinkRefiner.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/store-reasoning/src/main/java/tools/refinery/store/reasoning/translator/containment/ContainmentLinkRefiner.java b/subprojects/store-reasoning/src/main/java/tools/refinery/store/reasoning/translator/containment/ContainmentLinkRefiner.java
index e83c33ac..adbea26b 100644
--- a/subprojects/store-reasoning/src/main/java/tools/refinery/store/reasoning/translator/containment/ContainmentLinkRefiner.java
+++ b/subprojects/store-reasoning/src/main/java/tools/refinery/store/reasoning/translator/containment/ContainmentLinkRefiner.java
@@ -116,7 +116,7 @@ class ContainmentLinkRefiner extends AbstractPartialInterpretationRefiner<TruthV
116 this.sourceType = sourceType; 116 this.sourceType = sourceType;
117 this.targetType = targetType; 117 this.targetType = targetType;
118 trueLink = new InferredContainment(TruthValue.TRUE, Set.of(linkType), Set.of()); 118 trueLink = new InferredContainment(TruthValue.TRUE, Set.of(linkType), Set.of());
119 falseLinkUnknownContains = new InferredContainment(TruthValue.FALSE, Set.of(), Set.of(linkType)); 119 falseLinkUnknownContains = new InferredContainment(TruthValue.UNKNOWN, Set.of(), Set.of(linkType));
120 } 120 }
121 121
122 @Override 122 @Override