fix(reasoning): correct insufficient-observation comparability state

This commit is contained in:
2026-08-17 09:32:21 +01:00
parent ade445e453
commit 6ca8381b99
2 changed files with 37 additions and 4 deletions
+4 -3
View File
@@ -356,9 +356,10 @@ export function assessComparability(graph) {
if (profiles.length < 2) {
return {
comparabilityStatus: "confirmed",
reason: "Fewer than two supported observations need comparison.",
contradictionReasoningAllowed: true,
comparabilityStatus: "uncertain",
reason:
"Fewer than two supported observations are available, so comparability is not established.",
contradictionReasoningAllowed: false,
};
}