@@ -195,7 +195,10 @@ def __init__(
195195 title = "Partition an explicit finite domain" ,
196196 description = (
197197 "Materialize named cases over an explicit finite scope and optionally "
198- "replay exact coverage and disjointness with an authorized checker."
198+ "replay exact coverage and disjointness with an authorized checker. "
199+ "Members and case labels are opaque caller-supplied strings; the "
200+ "checker does not establish their mathematical meaning or that the "
201+ "supplied universe exhausts an external domain."
199202 ),
200203 provider = "jacobian.finite" ,
201204 provider_runtime = known_provider_runtime (
@@ -397,7 +400,10 @@ def invoke(self, request: CapabilityRequest) -> CapabilityResult:
397400 "duplicate_case_ids" : duplicate_case_ids ,
398401 },
399402 scope = CapabilityScope (
400- description = "the exact supplied finite universe" ,
403+ description = (
404+ "the exact caller-supplied finite universe; external-domain "
405+ "completeness and member semantics are not checked"
406+ ),
401407 parameters = {"element_count" : len (universe )},
402408 artifact_uri = scope .artifact_uri ,
403409 ),
@@ -408,7 +414,9 @@ def invoke(self, request: CapabilityRequest) -> CapabilityResult:
408414 else CapabilityCompletenessStatus .PARTIAL
409415 ),
410416 basis = (
411- "authorized checker replayed exact finite membership"
417+ "authorized checker replayed equality-based coverage and "
418+ "disjointness within the caller-supplied universe; it did not "
419+ "check external-domain completeness or member/case semantics"
412420 if verified
413421 else "generator-side membership accounting; not independently checked"
414422 ),
@@ -435,7 +443,9 @@ def invoke(self, request: CapabilityRequest) -> CapabilityResult:
435443 assurance = CapabilityAssurance (
436444 level = assurance_level ,
437445 basis = (
438- "operator-authorized independent finite partition checker accepted"
446+ "operator-authorized checker accepted equality-based coverage and "
447+ "disjointness within the caller-supplied universe; external-domain "
448+ "completeness and member/case semantics were not checked"
439449 if verified
440450 else "partition was proposed and inspected by its generator only"
441451 ),
0 commit comments