From 4ab92f3f2dad72ca8685bac6afc68d9ae813d626 Mon Sep 17 00:00:00 2001 From: Seongho Bae Date: Tue, 1 Sep 2026 00:12:27 +0000 Subject: [PATCH 1/2] feat(analysis): bind posterior topic-context producer to an analysis-run profile GAP-004 leftover / ADR 0068. Bind existing TopicContextPosteriorArtifact to cutoff-safe topic_context_posterior_v1. Posterior coordinates are not importance; missing draws are not collapsed; lineage events stay producer-supplied. --- CHANGELOG.md | 2 + crates/analysis_engine/src/lib.rs | 10 +- .../src/topic_context_posterior.rs | 86 +++++- ...ic_context_posterior_execution_contract.rs | 244 ++++++++++++++++++ docs/TRACEABILITY.md | 1 + ...68-topic-context-posterior-analysis-run.md | 86 ++++++ docs/adr/README.md | 2 + .../topic-context-posterior-analysis-run.md | 16 ++ 8 files changed, 442 insertions(+), 5 deletions(-) create mode 100644 crates/analysis_engine/tests/topic_context_posterior_execution_contract.rs create mode 100644 docs/adr/0068-topic-context-posterior-analysis-run.md create mode 100644 docs/doctoring/topic-context-posterior-analysis-run.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 062a69412..97ba332e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,8 @@ All notable changes to TEPP are documented here. The format follows Keep a Chang ## [Unreleased] +- **Posterior topic-context analysis-run profile**: cutoff-safe `topic_context_posterior_v1` binds `TopicContextPosteriorArtifact` and refuses importance, collapsed draws, and invented birth/split/merge (`analysis_engine`). Not a Bayesian sampler and not implemented-main. + - `event_core` adds bounded Allen interval-consistency classification, atomic path-consistency closure, contradiction/resource refusals, and an explicit dependency-error fallback without claiming unrestricted global satisfiability. - `psychometric_core` recovers the Driver, Oud, and Voelkle (2017, Table 2, p. 12 `MANIFESTTRAITVAR`; §7.1, p. 19; p. 16 `MANIFESTTRAITVARstd`; footnote 4; 2017-era ctsem `summary.ctsemFit.R`; JSS PDF re-opened 2026-08-27T14:20Z from https://www.jstatsoft.org/index.php/jss/article/download/v077i05/1104) scalar standardised manifest-trait variance on current main after `0ce16e8` dropped the pre-consolidation code while research notes already named the map (register items 83–84). Table 2 names `MANIFESTTRAITVAR` `Ψ_τ` the additional time-invariant variance-covariance on the measurement level and sets it `NULL` when there is no manifest trait. Equation 5 writes `Γ ~ N(τ, Ψ)` and names that covariance the manifest traits. Section 7.1 names manifest traits stable individual differences in indicator levels, distinct from process-level `TRAITVAR` `φ_ξ`. Page 16 prints standardised matrices with the suffix `std` when appropriate. The printed example on p. 16 is `discreteDRIFTstd`, not `MANIFESTTRAITVARstd`. Footnote 4 standardises using only the relevant variance, not the total. The relevant variance for that named indicator-level correlation is `MANIFESTTRAITVAR`, not process-level `TRAITVAR` and not residual `MANIFESTVAR` `θ`. The 2017-era source forms `MANIFESTTRAITVARstd` only when `MANIFESTTRAITVAR != 0`, as `solve(sqrt(diag(MANIFESTTRAITVAR) + ridging)) %&% MANIFESTTRAITVAR` when `verbose = TRUE`. OpenMx `%&%` is `t(A) %*% B %*% A`. Unlike `TRAITVARstd`, that formation adds `diag(c(ridging), n.manifest)`. The default `ridging = FALSE` adds 0, not `0.0001`; that ridge is a numerical hack and is not this exact map. The scalar correlation is `ψ / ψ = 1` after strictly positive `MANIFESTTRAITVAR`. Form strictly positive `ψ` first, then `1 / √ψ`, then `(1 / √ψ) ψ (1 / √ψ)`. Unstandardised `MANIFESTTRAITVAR` is defined for a zero trait; standardised `MANIFESTTRAITVAR` is not. Zero `MANIFESTTRAITVAR` skips forming `MANIFESTTRAITVARstd` in the 2017-era source and fails closed here. Indicator-level trait variance is an event-time structural quantity, so a non-event clock fails closed. `MANIFESTTRAITVAR` does not require stable `a < 0`. Distinct positive `ψ` recover the same 1. `trait / trait = 1` is `TRAITVARstd` and recovers the same number and remains a distinct named quantity. `θ` is `MANIFESTVAR` and is measurement error, not this correlation. Meredith (1993) remains unread (web search 2026-08-27T14:20Z: Springer/Cambridge Core paywalled; Unpaywall historically `is_oa: false`; Springer `content/pdf` is an HTML stub). Mislevy (1991, *Psychometrika, 56*, 177–196) remains unread on the same terms (DOI `10.1007/bf02294457`). Still not a Kalman filter, not a matrix `expm`, not ESEM estimation, not DSEM, and not ctsem estimation. diff --git a/crates/analysis_engine/src/lib.rs b/crates/analysis_engine/src/lib.rs index 72bd5854c..960fa9d3b 100644 --- a/crates/analysis_engine/src/lib.rs +++ b/crates/analysis_engine/src/lib.rs @@ -8,7 +8,9 @@ //! through [`tepp_api`]. It deliberately does not claim latent-variable or topic //! estimation authority; those estimators remain separate scientific crates. //! estimation authority; it invokes estimators through their scientific crate -//! contracts and preserves their artifact meaning. +//! contracts and preserves their artifact meaning. Posterior topic-context +//! artifacts are validated through [`TopicContextPosteriorArtifact`] and do +//! not claim topic importance. mod case_deletion_refit; mod lineage_criterion; @@ -48,9 +50,11 @@ pub use lineage_criterion::{ }; /// Bounded posterior topic-context producer contract and record types. pub use topic_context_posterior::{ - TOPIC_CONTEXT_POSTERIOR_BYTE_LIMIT, TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION, + TOPIC_CONTEXT_POSTERIOR_BYTE_LIMIT, TOPIC_CONTEXT_POSTERIOR_MODEL_CONTRACT_VERSION, + TOPIC_CONTEXT_POSTERIOR_OUTPUT_PROFILE, TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION, TopicActivityInterval, TopicContextMembership, TopicContextPosteriorArtifact, - TopicDocumentRelation, TopicLineageEvent, TopicPostPlausibleValue, + TopicContextPosteriorExecution, TopicDocumentRelation, TopicLineageEvent, + TopicPostPlausibleValue, execute_topic_context_posterior_run, }; /// Topic-lineage artifact and execution contracts from this engine. pub use topic_lineage_artifact::{ diff --git a/crates/analysis_engine/src/topic_context_posterior.rs b/crates/analysis_engine/src/topic_context_posterior.rs index e625305c5..e5da785db 100644 --- a/crates/analysis_engine/src/topic_context_posterior.rs +++ b/crates/analysis_engine/src/topic_context_posterior.rs @@ -7,12 +7,21 @@ use sha2::{Digest, Sha256}; use temporal_core::KnowledgeCutoff; use uuid::Uuid; -use crate::{AnalysisEngineError, format_digest, valid_identifier}; +use tepp_api::{ + AnalysisResultSummary, AnalysisRunAccepted, AnalysisRunRequest, AnalysisRunTerminalResult, +}; + +use crate::{AnalysisEngineError, format_digest, require_receipt_identity, valid_identifier}; /// Exact posterior artifact schema. pub const TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION: &str = "tepp.topic_context_posterior.v1"; /// Maximum canonical JSON size. pub const TOPIC_CONTEXT_POSTERIOR_BYTE_LIMIT: usize = 16 * 1024 * 1024; +/// Model contract required by the topic-context posterior analysis-run path. +pub const TOPIC_CONTEXT_POSTERIOR_MODEL_CONTRACT_VERSION: &str = "topic_context_posterior_v1"; +/// Analysis-run output profile required for a topic-context posterior artifact. +pub const TOPIC_CONTEXT_POSTERIOR_OUTPUT_PROFILE: &str = "topic_context_posterior_v1"; +const TOPIC_CONTEXT_POSTERIOR_INFERENCE_STATUS: &str = "posterior_topic_coordinates_not_importance"; const ENTRY_LIMIT: usize = 1_000_000; const DIMENSIONS: [&str; 4] = ["business_unit", "process_unit", "team", "person"]; type PosteriorDraws = BTreeMap>; @@ -217,7 +226,7 @@ impl TopicContextPosteriorArtifact { ], entry_limit, ) - && self.inference_status == "posterior_topic_coordinates_not_importance" + && self.inference_status == TOPIC_CONTEXT_POSTERIOR_INFERENCE_STATUS } /// Parse and validate one bounded posterior artifact. @@ -636,6 +645,79 @@ impl TopicContextPosteriorArtifact { } } +/// One completed topic-context posterior artifact and its terminal result. +#[derive(Clone, Debug, PartialEq)] +pub struct TopicContextPosteriorExecution { + /// Digest-bound producer posterior artifact. + pub artifact: TopicContextPosteriorArtifact, + /// Terminal result carrying the artifact identity, digest, and schema. + pub terminal_result: AnalysisRunTerminalResult, +} + +/// Execute posterior topic-context validation as one analysis-run profile. +/// +/// The executor validates an already-constructed +/// [`TopicContextPosteriorArtifact`] through its producer contract and does +/// not reimplement TRSL-TM fitting, collapse missing draws, infer topic +/// importance, or invent birth/split/merge events. Lineage events remain +/// producer-supplied. This is not a Bayesian sampler and not GPU execution. +/// +/// # Errors +/// +/// Returns a request/receipt/snapshot/cutoff/profile error or a producer +/// contract refusal. +pub fn execute_topic_context_posterior_run( + request: &AnalysisRunRequest, + accepted: &AnalysisRunAccepted, + snapshot_id: &str, + knowledge_cutoff: KnowledgeCutoff, + artifact: &TopicContextPosteriorArtifact, + completed_at: impl Into, +) -> Result { + request.to_json()?; + accepted.to_json()?; + require_receipt_identity(request, accepted)?; + if request.snapshot_id != snapshot_id || artifact.snapshot_id != snapshot_id { + return Err(AnalysisEngineError::SnapshotMismatch); + } + if request.knowledge_cutoff != knowledge_cutoff.to_rfc3339() + || artifact.knowledge_cutoff != knowledge_cutoff.to_rfc3339() + || request.model_contract_version != TOPIC_CONTEXT_POSTERIOR_MODEL_CONTRACT_VERSION + || request.output_profile != TOPIC_CONTEXT_POSTERIOR_OUTPUT_PROFILE + || artifact.run_id != accepted.run_id + || artifact.inference_status != TOPIC_CONTEXT_POSTERIOR_INFERENCE_STATUS + { + return Err(AnalysisEngineError::InvalidEvidence); + } + + let digest = artifact.sha256()?; + let mut document_ids = BTreeSet::new(); + for value in &artifact.plausible_values { + document_ids.insert(value.document_id.as_str()); + } + let document_count = + u64::try_from(document_ids.len()).map_err(|_| AnalysisEngineError::ArithmeticOverflow)?; + let summary = AnalysisResultSummary::new( + "topic_context_posterior", + document_count, + 3, + TOPIC_CONTEXT_POSTERIOR_INFERENCE_STATUS, + )?; + let terminal_result = AnalysisRunTerminalResult::succeeded( + request, + accepted, + format!("topic_context_posterior_artifact_{}", &digest[..16]), + digest, + TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION, + completed_at, + summary, + )?; + Ok(TopicContextPosteriorExecution { + artifact: artifact.clone(), + terminal_result, + }) +} + #[cfg(test)] mod tests { use super::AnalysisEngineError; diff --git a/crates/analysis_engine/tests/topic_context_posterior_execution_contract.rs b/crates/analysis_engine/tests/topic_context_posterior_execution_contract.rs new file mode 100644 index 000000000..d7ce40bf2 --- /dev/null +++ b/crates/analysis_engine/tests/topic_context_posterior_execution_contract.rs @@ -0,0 +1,244 @@ +//! End-to-end contract for cutoff-safe posterior topic-context analysis-run. + +use analysis_engine::{ + AnalysisEngineError, TOPIC_CONTEXT_POSTERIOR_MODEL_CONTRACT_VERSION, + TOPIC_CONTEXT_POSTERIOR_OUTPUT_PROFILE, TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION, + TopicActivityInterval, TopicContextMembership, TopicContextPosteriorArtifact, + TopicDocumentRelation, TopicPostPlausibleValue, execute_topic_context_posterior_run, +}; +use temporal_core::KnowledgeCutoff; +use tepp_api::{AnalysisRunAccepted, AnalysisRunRequest, AnalysisRunTerminalState}; + +fn cutoff() -> KnowledgeCutoff { + KnowledgeCutoff::parse_rfc3339("2026-08-01T00:00:00Z").expect("cutoff") +} + +fn artifact() -> TopicContextPosteriorArtifact { + let documents = [ + "018f3f7a-7b7c-7d00-8000-000000000001", + "018f3f7a-7b7c-7d00-8000-000000000002", + ]; + TopicContextPosteriorArtifact { + schema_version: TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION.into(), + run_id: "run-topic-context-posterior".into(), + snapshot_id: "snapshot-topic-context-posterior".into(), + source_snapshot_sha256: "0".repeat(64), + knowledge_cutoff: "2026-08-01T00:00:00Z".into(), + event_clock_code: "event_time_rfc3339".into(), + model_contract_version: "trsl-tm-v1".into(), + posterior_draw_set_id: "draw-set-1".into(), + posterior_draw_count: 2, + topic_count: 2, + topic_ids: vec![ + "018f3f7a-7b7c-7d00-8000-000000000101".into(), + "018f3f7a-7b7c-7d00-8000-000000000102".into(), + ], + activity_intervals: [ + "018f3f7a-7b7c-7d00-8000-000000000101", + "018f3f7a-7b7c-7d00-8000-000000000102", + ] + .map(|topic_id| TopicActivityInterval { + topic_id: topic_id.into(), + state_code: "active".into(), + valid_from: "2026-07-01T00:00:00Z".into(), + valid_to: "2026-07-15T00:00:00Z".into(), + }) + .into(), + lineage_events: vec![], + document_relations: vec![TopicDocumentRelation { + source_document_id: documents[0].into(), + target_document_id: documents[1].into(), + relation_kind_code: "event_lineage_precedes".into(), + event_time: "2026-07-15T00:00:00Z".into(), + evidence_sha256: "c".repeat(64), + evidence_resource_id: "evidence-relation-1".into(), + provenance_assertion_id: "provenance-relation-1".into(), + }], + plausible_values: documents + .iter() + .flat_map(|document| { + (0..2).map(|draw| TopicPostPlausibleValue { + document_id: (*document).into(), + draw_index: draw, + event_time: "2026-07-15T00:00:00Z".into(), + logistic_normal_coordinates: vec![if draw == 0 { 0.0 } else { 0.1 }], + }) + }) + .collect(), + memberships: documents + .iter() + .flat_map(|document| { + ["business_unit", "process_unit", "team", "person"].map(|dimension| { + TopicContextMembership { + document_id: (*document).into(), + dimension_code: dimension.into(), + context_id: format!("{dimension}-{document}"), + weight: 1.0, + valid_from: "2026-07-01T00:00:00Z".into(), + valid_to: "2026-08-01T00:00:00Z".into(), + evidence_sha256: "b".repeat(64), + evidence_resource_id: format!("evidence-{dimension}-{document}"), + provenance_assertion_id: format!("provenance-{dimension}-{document}"), + } + }) + }) + .collect(), + inference_status: "posterior_topic_coordinates_not_importance".into(), + } +} + +fn request() -> AnalysisRunRequest { + AnalysisRunRequest { + contract_version: 1, + idempotency_key: "topic-context-posterior-idem".into(), + tenant_workspace_id: "tenant-workspace".into(), + snapshot_id: "snapshot-topic-context-posterior".into(), + knowledge_cutoff: "2026-08-01T00:00:00Z".into(), + model_contract_version: TOPIC_CONTEXT_POSTERIOR_MODEL_CONTRACT_VERSION.into(), + output_profile: TOPIC_CONTEXT_POSTERIOR_OUTPUT_PROFILE.into(), + } +} + +fn accepted(request: &AnalysisRunRequest) -> AnalysisRunAccepted { + AnalysisRunAccepted::new( + "run-topic-context-posterior", + "accepted", + &request.idempotency_key, + ) + .expect("accepted") +} + +fn execute( + request: &AnalysisRunRequest, +) -> Result { + execute_topic_context_posterior_run( + request, + &accepted(request), + "snapshot-topic-context-posterior", + cutoff(), + &artifact(), + "2026-08-02T00:00:00Z", + ) +} + +#[test] +fn validated_posterior_emits_digest_without_claiming_importance() { + let request = request(); + let execution = execute(&request).expect("execution"); + assert_eq!( + execution.artifact.schema_version, + TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION + ); + assert_eq!(execution.artifact.topic_count, 2); + assert_eq!(execution.artifact.posterior_draw_count, 2); + assert_eq!( + execution.artifact.inference_status, + "posterior_topic_coordinates_not_importance" + ); + assert_eq!( + execution.terminal_result.run_state, + AnalysisRunTerminalState::Succeeded + ); + assert_eq!( + execution.terminal_result.result_sha256.as_deref(), + Some(execution.artifact.sha256().expect("digest").as_str()) + ); + assert_eq!( + execution.terminal_result.result_schema_version.as_deref(), + Some(TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION) + ); +} + +#[test] +fn producer_contract_refusal_and_run_identity_mismatch_fail_closed() { + let request = request(); + let mut invalid = artifact(); + invalid.plausible_values.pop(); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + "snapshot-topic-context-posterior", + cutoff(), + &invalid, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); + let mut mismatched_run = artifact(); + mismatched_run.run_id = "other-run".into(); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + "snapshot-topic-context-posterior", + cutoff(), + &mismatched_run, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); +} + +#[test] +fn execution_refuses_snapshot_profile_and_cutoff_mismatch() { + let request = request(); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + "other-snapshot", + cutoff(), + &artifact(), + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::SnapshotMismatch) + ); + for invalid_request in [ + { + let mut value = request.clone(); + value.knowledge_cutoff = "2026-08-02T00:00:00Z".into(); + value + }, + { + let mut value = request.clone(); + value.model_contract_version = "other-model".into(); + value + }, + { + let mut value = request.clone(); + value.output_profile = "lineage_criterion_v1".into(); + value + }, + { + let mut value = request.clone(); + value.output_profile = "case_deletion_refit_v1".into(); + value + }, + { + let mut value = request.clone(); + value.output_profile = "composed_fitted_lineage_v1".into(); + value + }, + { + let mut value = request.clone(); + value.output_profile = "fitted_candidate_k_v1".into(); + value + }, + { + let mut value = request.clone(); + value.output_profile = "trsl_topic_lineage_v1".into(); + value + }, + { + let mut value = request.clone(); + value.output_profile = "method_effects_v1".into(); + value + }, + ] { + assert_eq!( + execute(&invalid_request), + Err(AnalysisEngineError::InvalidEvidence) + ); + } +} diff --git a/docs/TRACEABILITY.md b/docs/TRACEABILITY.md index 2b783c2ab..cc9ae717b 100644 --- a/docs/TRACEABILITY.md +++ b/docs/TRACEABILITY.md @@ -74,6 +74,7 @@ The full APA 7th standards/literature register remains `docs/research/standards- | report template/section/copied/style/modality method effects | ADR 0004/0012; PRD/TRD | simulation truth factors implemented; `modality_source` modality-versus-unique-content identity on the active PR; estimator-side method model remains future | partial | | report template/section/copied/style/modality method effects | ADR 0004/0012; PRD/TRD | simulation truth factors implemented; `corpus_background` background-versus-unique-content identity on the active PR; estimator-side method model remains future | partial | | report template/section/copied/style/modality method effects | ADR 0004/0012; PRD/TRD | simulation truth factors implemented; `prompt_source` prompt-versus-unique-content identity on the active PR; estimator-side method model remains future | partial | +| posterior topic-context analysis-run | ADR 0022/0024/0068 | `analysis_engine` `topic_context_posterior_v1` binds `TopicContextPosteriorArtifact`; posterior coordinates not importance; refuses collapsed draws; lineage events remain producer-supplied; not a Bayesian sampler and not implemented-main | active-PR | | candidate K statistical/Pareto gates | ADR 0012; research | `model_selection` fits each candidate `K` with the CPU `f64` reference and scores the actual mixture likelihood plus Schwarz's (1978) `ℓ − (p ln N)/2` penalty before the Pareto gate; candidate blinding, blinded LLM review, GPU, and backend comparison remain accepted-target | active-PR | | compositional topic correlation / stable clustering | ADR 0005/0012; research | future `network_analysis` | accepted-target | | posterior ESEM / longitudinal invariance / DSEM | ADR 0005 | `psychometric_core` construct/input gates, true-loading OLS recovery, posterior-draw point-estimate averaging, Rubin `T` on draw-level OLS loadings, CWC within/between OLS plus the contextual effect, event-time log-rate, constant- and time-varying-predictor discrete effects (Voelkle Eqs. 12 and 14), exact scalar discrete process noise (Driver et al., 2017, Eq. 3), lagged latent covariance and unconditional latent variance (Driver et al., 2017, Eq. 3–4), stationary within-subject variance (Driver et al., 2017, Eq. 4 as `Δt → ∞`; `asymDIFFUSION`), trait-plus-state variance (Driver et al., 2017, §4.3 `TRAITVAR`; not process noise), observed-indicator variance and lagged observed covariance (Driver et al., 2017, Eq. 5; Table 2 `MANIFESTVAR` is `Θ`, not `Var(y)`; `MANIFESTTRAITVAR` is not `MANIFESTVAR`; `Θ` does not enter lagged observed covariance; observed-indicator mean is `τ + λ μ`; `MANIFESTMEANS` is not `E(y)`; `CINT` is not `MANIFESTMEANS`; discrete latent mean is `exp(a Δt) μ_0 + (exp(a Δt) − 1)/a κ`; `T0MEANS` is not `μ_t`; evolved observed mean is `τ + λ μ_t`; `τ + λ μ_0` is not `E(y_t)`; contemporaneous `TDPREDEFFECT` impulse is `m x`, not `CINT`, not `TIPREDEFFECT`, and not Voelkle Eq. 14; Eq. 5 of that contemporaneous impulse is `τ + λ(μ_t + m x)`, and `τ + λ μ_t` is not that observed mean; time-independent `TIPREDEFFECT` increment is `A^{-1}[e^{A Δt} − I] B z`, not `CINT`, not `M x`, not Voelkle Eq. 14, and not the coefficient `B`; Eq. 5 of that increment is `τ + λ(μ_t + A^{-1}[e^{A Δt} − I] B z)`, and `τ + λ μ_t` is not that observed mean; `τ + λ(μ_t + m x)` is not that observed mean; `τ + λ(μ_t + e^{a(t−u)} m x)` is not that observed mean when `u ≠ t`; within-interval `TDPREDEFFECT` carry is `e^{A(t−u)} M x` for `t0 < u < t`, not the contemporaneous Dirac, not `CINT`, not `TIPREDEFFECT`, and not Voelkle Eq. 14; Eq. 5 of that carry is `τ + λ(μ_t + e^{a(t−u)} m x)`, and `τ + λ μ_t` is not that observed mean; `τ + λ(μ_t + m x)` is not that carried observed mean when `u ≠ t`; §7.2 level-change `CINT` is `κ = −a m x` (`a < 0`; not the dissipating Dirac, not a free `CINT`, not `TIPREDEFFECT`; Eq. 3 of that setting is `(1 − e^{a Δt}) m x`); §7.2 extra-process contribution is `a_{ηξ} x (e^{ε Δt} − e^{a Δt}) / (ε − a)` (not `κ = −a m x`, not `(1 − e^{a Δt}) m x`, not the dissipating Dirac; `ε ≥ 0` fails closed; Eq. 5 of that contribution is `τ + λ(μ_t + a_{ηξ} x (e^{ε Δt} − e^{a Δt}) / (ε − a)`; extra `LAMBDA` is 0; `τ + λ μ_t` is not that observed mean; after-t0 extra-process `TDPREDEFFECT` uses `t − u` with `t0 < u < t` while `μ_t` uses `Δt`; that after-t0 observed mean is not the first-occasion extra-process observed mean; §7.2 `asymTIPREDEFFECT` is `-B z / a` for `a < 0` and is not `B`, not `A^{-1}[e^{A Δt} − I] B z`, not `CINT`, and not `M x`; §7.2 `addedTIPREDVAR` is `(B / a)² v` and is not `TRAITVAR`, not `asymDIFFUSION`, and not `-B z / a`; Table 2 `asymCINT` is `-κ / a` for `a < 0` and is not `κ`, not `A^{-1}[e^{A Δt} − I] κ`, not `T0MEANS`, and not `-B z / a`; p. 16 stationary `T0MEANS` is `-κ / a + −B z / a` and is not free `T0MEANS`, not `asymCINT` alone, not `asymTIPREDEFFECT` alone, and not the finite-interval discrete latent mean; Eq. 5 of that constrained mean is `τ + λ(−κ / a + −B z / a)`; `τ + λ μ_0` is not that observed mean; `MANIFESTMEANS` is not `E(y_0)`; the constrained latent mean is not `E(y_0)`; stationary `T0VAR` is `trait + −q / (2 a) + (B / a)² v` (not free `T0VAR`, not `asymDIFFUSION` alone, not `TRAITVAR` alone, not `addedTIPREDVAR` alone, and not the finite-interval discrete latent variance. Eq. 5 of that constrained variance is `λ²(trait + −q / (2 a) + (B / a)² v) + θ + ψ` (JSS PDF re-opened 2026-08-22T03:20Z; form the stationary latent variance first, then `λ² p + θ + ψ`; `λ² p_0` is not that observed variance; `λ²(−q / (2 a)) + θ` is not that observed variance when `TRAITVAR` or `addedTIPREDVAR` is nonzero; `MANIFESTVAR` is not `Var(y_0)`; the constrained latent variance is not `Var(y_0)`)); lagged stationary `T0VAR` is `trait + e^{a Δt}(−q / (2 a)) + (B / a)² v` (trait and `addedTIPREDVAR` do not decay; contemporaneous `T0VAR` is not that lagged map; decaying the constrained total as if it were all state is not that lagged map; Eq. 5 of that lagged covariance is `λ²(trait + e^{a Δt}(−q / (2 a)) + (B / a)² v) + ψ`; `Θ` does not enter; contemporaneous `Var(y_0)` is not that lagged observed covariance; the lagged latent covariance is not that observed covariance); later-occasion stationary `T0VAR` is `trait + e^{2 a Δt}(−q / (2 a)) + Q_Δt + (B / a)² v` (trait and `addedTIPREDVAR` do not enter `Q_Δt`; under stationarity that composition equals contemporaneous `T0VAR`; evolving the constrained total as if it were all state is not that later map; the lagged covariance omits `Q_Δt`; `Q_Δt` is not that later map; Eq. 5 of that later-occasion variance is `λ²(trait + e^{2 a Δt}(−q / (2 a)) + Q_Δt + (B / a)² v) + θ + ψ`; lagged observed covariance omits `Q_Δt` and `θ`; `MANIFESTVAR` is not `Var(y_t)`; the later-occasion latent variance is not `Var(y_t)`); predetermined later-occasion `T0VAR` is `trait + e^{2 a Δt} p_0 + Q_Δt + (B / a)² v` (free `T0VAR` `p_0` is not that later map; setting `p_0 = −q / (2 a)` recovers the stationary later-occasion map; stationary later variance uses `−q / (2 a)` in place of `p_0` and is not that later map when `p_0` is free; evolving `trait + p_0 + (B / a)² v` as if it were all state is not that later map; Eq. 5 of that predetermined later-occasion variance is `λ²(trait + e^{2 a Δt} p_0 + Q_Δt + (B / a)² v) + θ + ψ`; `MANIFESTVAR` is not `Var(y_t)`; the predetermined later-occasion latent variance is not `Var(y_t)`; stationary later observed variance is not that observed variance when `p_0` is free); predetermined lagged `T0VAR` is `trait + e^{a Δt} p_0 + (B / a)² v` (free `T0VAR` `p_0` is not that lagged map; setting `p_0 = −q / (2 a)` recovers the stationary lagged map; stationary lagged covariance uses `−q / (2 a)` in place of `p_0` and is not that lagged map when `p_0` is free; evolving `trait + p_0 + (B / a)² v` as if it were all state is not that lagged map; later-occasion variance includes `Q_Δt` and is not that lagged map; Eq. 5 of that predetermined lagged covariance is `λ²(trait + e^{a Δt} p_0 + (B / a)² v) + ψ`; `MANIFESTVAR` does not enter; the predetermined lagged latent covariance is not that observed covariance; predetermined later observed variance includes `Q_Δt` and `θ` and is not that lagged observed covariance; stationary lagged observed covariance is not that observed covariance when `p_0` is free; the predetermined first-occasion variance of §4.3 predetermined `T0VAR` is `trait + p_0 + (B / a)² v`; free `p_0` is not that map; stationary first-occasion variance uses `−q / (2 a)` in place of `p_0` and is not that map when `p_0` is free; lagged covariance decays the state and is not that map; later-occasion variance includes `Q_Δt` and is not that map; Eq. 5 of that predetermined first-occasion variance is `λ²(trait + p_0 + (B / a)² v) + θ + ψ`; `MANIFESTVAR` is not that first-occasion observed variance; the predetermined first-occasion latent variance is not that observed variance; stationary first-occasion observed variance is not that observed variance when `p_0` is free; predetermined later observed variance includes `Q_Δt` and is not that first-occasion observed variance; later-start lagged covariance of predetermined `T0VAR` is `trait + e^{a s}(e^{2 a u} p_0 + Q_u) + (B / a)² v` (Driver et al., 2017, §4.3 `startoffset`; Eq. 4; JSS PDF re-opened 2026-08-23T10:27Z; first-occasion lagged omits `e^{a s} Q_u`; later-occasion variance does not lag; stationary lagged uses `−q / (2 a)`; decaying the later total is not that map; Eq. 5 of that later-start lagged covariance is `λ²` of it plus `ψ`; `Θ` does not enter; first-occasion lagged observed omits `e^{a s} Q_u`; later observed variance includes `Q_u` and `θ`; later-start later-occasion variance of predetermined `T0VAR` is `trait + e^{2 a s}(e^{2 a u} p_0 + Q_u) + Q_s + (B / a)² v` (Driver et al., 2017, §4.3 `startoffset`; Eq. 3–4 Chapman–Kolmogorov `Q_{u+s} = e^{2 a s} Q_u + Q_s`; JSS PDF re-opened 2026-08-23T11:05Z; later-occasion variance at `u` omits `Q_s`; later-start lagged covariance omits `Q_s`; stationary later uses `−q / (2 a)`; evolving the later total as if it were all state is not that map; ignoring `startoffset` omits `e^{2 a s} Q_u`; Eq. 5 of that later-start later-occasion variance is `λ²` of it plus `θ + ψ`; `MANIFESTVAR` is not that observed variance; p. 16 `discreteDRIFTstd` is `e^{a Δt}` after strictly positive `asymDIFFUSION` `-q / (2 a)` (footnote 4; unstandardised `e^{a Δt}` is defined for growing `a ≥ 0` and for zero diffusion and is not `discreteDRIFTstd`; the §7.1 trait-plus-state autocorrelation uses `TRAITVAR` and is not `discreteDRIFTstd`; p. 16 `discreteDIFFUSIONstd` is `Q_Δt / (−q / (2 a))` after strictly positive `asymDIFFUSION` `-q / (2 a)` (footnote 4; unstandardised `Q_Δt` is defined for growing `a ≥ 0` and for zero diffusion and is not `discreteDIFFUSIONstd`; the continuous standardisation `−2 a` is not `discreteDIFFUSIONstd`; `Q_Δt / (trait + p + added)` uses `TRAITVAR` and is not `discreteDIFFUSIONstd`; `TRAITVAR` is not the standardisation variance; p. 16 `DIFFUSIONstd` is `q / (−q / (2 a)) = −2 a` after strictly positive `asymDIFFUSION` `-q / (2 a)` (Driver et al., 2017, p. 16; Eq. 4; footnote 4; JSS PDF re-opened 2026-08-23T13:20Z; unstandardised `q` is defined for growing `a ≥ 0` and for zero diffusion and is not `DIFFUSIONstd`; the discrete standardisation `Q_Δt / (−q / (2 a))` depends on `Δt` and is not `DIFFUSIONstd`; `q / (trait + p + added)` uses `TRAITVAR` and is not `DIFFUSIONstd`; `TRAITVAR` is not the standardisation variance; p. 16 `DRIFTstd` is the continuous auto-effect after strictly positive `asymDIFFUSION` `-q / (2 a)` (Driver et al., 2017, p. 16; Eq. 1; footnote 4; JSS PDF re-opened 2026-08-23T13:28Z); unstandardised `a` is defined for growing `a ≥ 0` and for zero diffusion and is not `DRIFTstd`; the discrete standardisation `e^{a Δt}` depends on the event interval and is not `DRIFTstd`; `a p / (trait + p + added)` uses `TRAITVAR` and is not `DRIFTstd`; `TRAITVAR` is not the standardisation variance); p. 16 `asymTIPREDEFFECTstd` is `(-B / a) · √v / √(-q / (2 a))` after strictly positive `asymDIFFUSION` `-q / (2 a)` and strictly positive predictor variance `v` (Driver et al., 2017, p. 16; §7.2; footnote 4; JSS PDF re-opened 2026-08-23T14:25Z; unstandardised `-B / a` is defined for a zero coefficient and for zero predictor variance and is not `asymTIPREDEFFECTstd`; the finite-interval standardisation `A^{-1}[e^{A Δt} − I] B · √v / √p` depends on the event interval and is not `asymTIPREDEFFECTstd`; `(-B / a) · √v / √(trait + p + added)` uses `TRAITVAR` and is not `asymTIPREDEFFECTstd`; `TRAITVAR` is not the standardisation variance); p. 16 `TIPREDEFFECTstd` is `B · √v / √(-q / (2 a))` after strictly positive `asymDIFFUSION` `-q / (2 a)` and strictly positive predictor variance `v` (Driver et al., 2017, p. 16; §7.2; footnote 4; JSS PDF re-opened 2026-08-23T16:21Z; unstandardised `B` is defined for a zero coefficient and for zero predictor variance and is not `TIPREDEFFECTstd`; the asymptotic standardisation `(-B / a) · √v / √p` is the total change and is not `TIPREDEFFECTstd`; the finite-interval standardisation `A^{-1}[e^{A Δt} − I] B · √v / √p` depends on the event interval and is not `TIPREDEFFECTstd`; `B · √v / √(trait + p + added)` uses `TRAITVAR` and is not `TIPREDEFFECTstd`; `TRAITVAR` is not the standardisation variance); Table 3 `T0TIPREDEFFECTstd` is `t0_b · √v / √p_0` after strictly positive free `T0VAR` `p_0` and strictly positive predictor variance `v` (Driver et al., 2017, Table 3, p. 13; p. 16; footnote 4; 2017-era ctsem `summary.ctsemFit.R`; JSS PDF re-opened 2026-08-23T17:20Z; the affected variance is free `T0VAR`, not `asymDIFFUSION`; unstandardised `t0_b` is defined for a zero coefficient and for zero predictor variance and is not `T0TIPREDEFFECTstd`; `TIPREDEFFECTstd` `B · √v / √(-q / (2 a))` is the continuous coefficient and is not `T0TIPREDEFFECTstd`; `asymTIPREDEFFECTstd` `(-B / a) · √v / √p` is the total change and is not `T0TIPREDEFFECTstd`; `t0_b · √v / √(trait + p_0 + added)` uses `TRAITVAR` and is not `T0TIPREDEFFECTstd`; `TRAITVAR` is not the standardisation variance); 2017-era `addedT0TIPREDVAR` is `t0_b² v` (Driver et al., 2017, Table 3, p. 13; p. 16; §7.2; 2017-era ctsem `summary.ctsemFit.R`; JSS PDF re-opened 2026-08-23T18:20Z; `T0TIPREDEFFECT %*% TIPREDVAR %*% t(T0TIPREDEFFECT)` immediately after `T0TIPREDEFFECTstd`; form `t0_b` first, then square, then multiply by `v`; a zero coefficient or zero predictor variance is exactly zero; free `T0TIPREDEFFECT` does not require `a < 0`; `(B / a)² v` is `addedTIPREDVAR` and is not this first-occasion map; `t0_b · √v / √p_0` is `T0TIPREDEFFECTstd` and is not this variance; free `T0VAR` is not this extra TI variance; `TRAITVAR` is not this extra TI variance; Equation 5 of 2017-era `addedT0TIPREDVAR` is `λ² t0_b² v` (Driver et al., 2017, Eq. 5, p. 5; Table 3, p. 13; Table 2, p. 12; 2017-era ctsem `summary.ctsemFit.R`; JSS PDF re-opened 2026-08-23T19:10Z; form `t0_b² v` first, then `(λ extra) λ` with `θ = 0`; a zero loading or zero extra is exactly zero; `t0_b² v` is the latent extra, not the observed extra; `λ² p_0 + θ` is first-occasion observed variance, not this extra; `λ² (B / a)² v` is Eq. 5 of `addedTIPREDVAR`, not this first-occasion observed extra; `MANIFESTVAR` `θ` is not this extra; Equation 5 of §7.2 `addedTIPREDVAR` is `λ² (B / a)² v`; form `(B / a)² v` first, then `(λ extra) λ` with `θ = 0`; a zero loading or zero extra is exactly zero; lasting asymptotic extra requires `a < 0`; `(B / a)² v` is the latent extra, not the observed extra; `λ² t0_b² v` is first-occasion extra observed TI variance, not this extra; `λ² p + θ` is stationary observed variance, not this extra; `MANIFESTVAR` `θ` is not this extra; p. 16 `TDPREDEFFECTstd` is `m · √v / √(-q / (2 a))` after strictly positive `asymDIFFUSION` and strictly positive time-dependent predictor variance; unstandardised `M` is not `TDPREDEFFECTstd`; `TIPREDEFFECTstd` is not `TDPREDEFFECTstd` even when `M = B`; intercept-style `A^{-1}[e^{A Δt} − I] M · √v / √p` is not `TDPREDEFFECTstd`; `m · √v / √(trait + p + added)` uses `TRAITVAR` and is not `TDPREDEFFECTstd`; Table 3 / p. 16 `T0TDPREDEFFECTstd` is `t0_m · √v / √p_0` after strictly positive free `T0VAR` and strictly positive TD predictor variance; unstandardised `t0_m` is not `T0TDPREDEFFECTstd`; `TDPREDEFFECTstd` uses `asymDIFFUSION` and is not `T0TDPREDEFFECTstd`; `T0TIPREDEFFECTstd` is not `T0TDPREDEFFECTstd` even when `t0_m = t0_b`; `t0_m · √v / √(trait + p_0 + added)` uses `TRAITVAR` and is not `T0TDPREDEFFECTstd`; free `T0VAR` does not require `a < 0`; p. 16 `T0VARstd` is `p_0 / p_0 = 1` after strictly positive free `T0VAR` (`solve(sqrt(diag(T0VAR))) %&% T0VAR`; OpenMx `%&%` is `t(A) %*% B %*% A`; default ridge is 0); unstandardised `T0VAR` is not `T0VARstd`; `T0TDPREDEFFECTstd` is not `T0VARstd`; `addedT0TIPREDVAR` is not `T0VARstd`; p. 16 `TRAITVARstd` is `trait / trait = 1` after strictly positive `TRAITVAR` (`solve(sqrt(diag(TRAITVAR))) %&% TRAITVAR`; OpenMx `%&%` is `t(A) %*% B %*% A`; no ridge addend); unstandardised `TRAITVAR` is not `TRAITVARstd`; `T0VARstd` is not `TRAITVARstd` even when both equal 1; `addedT0TIPREDVAR` is not `TRAITVARstd`; p. 16 `MANIFESTTRAITVARstd` is `ψ / ψ = 1` after strictly positive `MANIFESTTRAITVAR` (`solve(sqrt(diag(MANIFESTTRAITVAR))) %&% MANIFESTTRAITVAR`; OpenMx `%&%` is `t(A) %*% B %*% A`; 2017-era source adds ridging; default ridge is 0); unstandardised `MANIFESTTRAITVAR` is not `MANIFESTTRAITVARstd`; `TRAITVARstd` is not `MANIFESTTRAITVARstd` even when both equal 1; `MANIFESTVAR` is not `MANIFESTTRAITVARstd`; p. 16 `MANIFESTVARstd` is `θ / θ = 1` after strictly positive `MANIFESTVAR` (`solve(sqrt(diag(MANIFESTVAR))) %&% MANIFESTVAR`; OpenMx `%&%` is `t(A) %*% B %*% A`; 2017-era source adds ridging; default ridge is 0; 2017-era `dimnames` assignment to `latentNames` is a source bug); unstandardised `MANIFESTVAR` is not `MANIFESTVARstd`; `MANIFESTTRAITVARstd` is not `MANIFESTVARstd` even when both equal 1; Equation 5 `Var(y)` is not `MANIFESTVARstd`; p. 16 `TIPREDVARstd` is `v / v = 1` after strictly positive `TIPREDVAR` (`solve(sqrt(diag(TIPREDVAR))) %&% TIPREDVAR`; OpenMx `%&%` is `t(A) %*% B %*% A`; 2017-era source adds ridging; default ridge is 0; `dimnames` are `TIpredNames`); unstandardised `TIPREDVAR` is not `TIPREDVARstd`; `MANIFESTVARstd` is not `TIPREDVARstd` even when both equal 1; §7.2 `addedTIPREDVAR` is not `TIPREDVARstd`; p. 16 `asymDIFFUSIONstd` is `p / p = 1` after strictly positive `asymDIFFUSION` (`solve(sqrt(diag(asymDIFFUSION))) %&% asymDIFFUSION`; OpenMx `%&%` is `t(A) %*% B %*% A`; 2017-era source adds ridging; default ridge is 0; `dimnames` are `latentNames`); unstandardised `asymDIFFUSION` is not `asymDIFFUSIONstd`; `TIPREDVARstd` is not `asymDIFFUSIONstd` even when both equal 1; `DIFFUSIONstd` `−2 a` is not `asymDIFFUSIONstd`; p. 16 `discreteCINTstd` is `A^{-1}[e^{A Δt} − I] κ / √p` after strictly positive `asymDIFFUSION`; unstandardised `discreteCINT` is not `discreteCINTstd`; `κ / √p` is not `discreteCINTstd`; `(-κ / a) / √p` is not `discreteCINTstd`; `asymCINTstd` is `(-κ / a) / √p` after strictly positive `asymDIFFUSION`; unstandardised `asymCINT` is not `asymCINTstd`; `κ / √p` is not `asymCINTstd`; `discreteCINTstd` is not `asymCINTstd`; `T0MEANSstd` is `μ_0 / √p_0` after strictly positive free `T0VAR`; unstandardised `T0MEANS` is not `T0MEANSstd`; `T0VARstd` is not `T0MEANSstd`; `μ_0 / √asymDIFFUSION` is not `T0MEANSstd`; `MANIFESTMEANSstd` is `τ / √θ` after strictly positive `MANIFESTVAR`; unstandardised `MANIFESTMEANS` is not `MANIFESTMEANSstd`; `MANIFESTVARstd` is not `MANIFESTMEANSstd`; `τ / √(λ² Var(η) + θ)` is not `MANIFESTMEANSstd`; p. 16 `CINTstd` is `κ / √p` after strictly positive `asymDIFFUSION`; unstandardised `CINT` is not `CINTstd`; `asymCINTstd` is not `CINTstd`; `discreteCINTstd` is not `CINTstd`; `κ / √(trait + p + added)` is not `CINTstd`;))))), irregular already-centered residual lag, and strong/strict-gated latent means on the stacked psychometric PR (two-observation residual variance is identically `0` and caps at strong/scalar; Putnick & Bornstein, 2016, PMC5145197 opened 2026-08-19T22:15Z); full ESEM/DSEM remaining | partial | diff --git a/docs/adr/0068-topic-context-posterior-analysis-run.md b/docs/adr/0068-topic-context-posterior-analysis-run.md new file mode 100644 index 000000000..555e032ca --- /dev/null +++ b/docs/adr/0068-topic-context-posterior-analysis-run.md @@ -0,0 +1,86 @@ +# ADR 0068 — Posterior topic-context producer as an analysis-run output profile + +**Decision status:** Accepted +**Implementation maturity:** active-PR — composed on this branch; not implemented-main +**Date:** 2026-09-01 +**Supersedes:** None; complements ADR 0022 (cutoff-safe analysis-run execution) and ADR 0024 (posterior topic-context producer contract). +**Figma File ID:** N/A — this increment changes a Rust service crate and has no user-interface surface. +**Storybook inventory:** N/A — no reusable web object or interaction changed. + +## Context + +Protected main already validates digest-bound posterior topic-context +artifacts inside `analysis_engine::TopicContextPosteriorArtifact`. The +producer contract keeps full-rank logistic-normal coordinates, refuses +collapsed missing draws, and labels the claim boundary +`posterior_topic_coordinates_not_importance`. Operators still cannot +request that validator as a cutoff-safe analysis-run output. + +Independent TDT link-criterion fitting, location-membership refusals, +copied-text residue refusals, provenance-is-not-transition refusals, and +composed fitted-lineage remain different profiles. Full Bayesian sampling, +GPU, and invented topic birth/split/merge remain later GAP-004 work and +are not this slice. ADR 0064 through ADR 0067 are already taken by live +sibling PRs. + +## Decision + +Add the `topic_context_posterior_v1` analysis-run output profile to +`analysis_engine`. The executor: + +- consumes an already-constructed `TopicContextPosteriorArtifact`; +- requires the request snapshot, knowledge cutoff, and accepted run + identity to match the offered artifact; +- invokes the existing producer `sha256`/validate path without + reimplementing TRSL-TM fitting; +- emits a digest-bound terminal result under + `tepp.topic_context_posterior.v1` with inference status + `posterior_topic_coordinates_not_importance`; +- refuses reuse of `lineage_criterion_v1`, `case_deletion_refit_v1`, + `composed_fitted_lineage_v1`, `fitted_candidate_k_v1`, + `trsl_topic_lineage_v1`, and `method_effects_v1` as this profile; +- does not invent a Bayesian sampler, persist rows, select GPU backends, + infer topic importance, or emit invented birth/split/merge events. + Lineage events remain producer-supplied. + +This is posterior topic coordinates, not importance and not a sampler. + +## Alternatives considered + +1. Bind another refusal or lineage-criterion profile — rejected because + those binds are already live as separate analysis-run profiles. +2. Invent a Bayesian sampler or topic birth/split/merge engine — rejected + because those functions do not exist on protected main as executors. +3. Collapse missing draws into a point estimate — rejected because the + producer contract already fails closed on incomplete draw sets. +4. Bind the existing producer validator to ADR 0022's analysis-run + profile — accepted. + +## Consequences + +Operators can request cutoff-safe posterior topic-context validation as a +digest-bound terminal result. The artifact does not claim topic +importance, Bayesian sampling, GPU parity, or invented birth/split/merge. +Snapshot/profile/cutoff mismatch and producer-contract refusal fail +closed. + +## Verification + +The PR includes Rust integration tests for successful digest-bound +coordinates, incomplete draw refusal, run-identity mismatch, +snapshot/profile/cutoff mismatch including reuse of live sibling +profiles. Run: + +```text +cargo fmt --all -- --check +cargo test -p analysis_engine +cargo clippy -p analysis_engine --all-targets -- -D warnings +python3 scripts/validate_documentation.py +``` + +## Rollback and supersession + +Rollback removes the `topic_context_posterior_v1` profile. No persisted +schema migration is introduced. Supersede only with an ADR that keeps +posterior coordinates distinct from importance, sampling, and invented +lineage events. diff --git a/docs/adr/README.md b/docs/adr/README.md index 1254c8079..eabb1c7d2 100644 --- a/docs/adr/README.md +++ b/docs/adr/README.md @@ -28,6 +28,7 @@ Read [`ADR_POLICY.md`](ADR_POLICY.md) first. **Decision status and implementatio | [0020](0020-span-grounded-semantic-units.md) | Span-grounded semantic units; language tags are not identity | Accepted | active-PR | First ADR 0004 production slice; concept alignment, invariance, and topic estimation are not claimed. | | [0021](0021-lineageweave-project-history-boundary.md) | LineageWeave project-history service boundary | Accepted | active-PR | Credential-free bounded project-history API preserves LineageWeave authorization ownership. | | [0022](0022-deterministic-analysis-run-execution.md) | Deterministic cutoff-safe analysis-run execution | Accepted | active-PR | Closes the first executable product path from accepted run to digest-bound terminal result without claiming estimator authority. | +| [0068](0068-topic-context-posterior-analysis-run.md) | Posterior topic-context as an analysis-run profile | Accepted | active-PR | Complements ADR 0022/0024; posterior coordinates, not importance and not a Bayesian sampler. | | [0024](0024-lineage-pair-criterion-and-project-journey-posterior.md) | Independent Event Lineage pair criterion and posterior Project Journey | Proposed | active-PR | Strict artifacts preserve criterion/event-time draws, branches, ties, and CPU/GPU receipts without claiming the scientific estimator is complete. | | [0025](0025-macos-native-rust-mlx-metal-boundary.md) | macOS-native Rust-owned MLX Metal execution | Accepted | accepted-target | Compose authenticates to a native host service; Linux never claims Metal, and actual backend/parity receipts fail closed. | | [0023](0023-lineage-criterion-anchor-contract.md) | TEPP-owned Event Lineage criterion anchor | Accepted | active-PR | PR #237 publishes the strict accepted/rejected artifact and identities; estimator execution remains fail-closed future work. | @@ -138,6 +139,7 @@ Use the narrowest owning ADR when decisions overlap: - **project-history wire-size symmetry:** ADR 0019. - **LineageWeave project-history service boundary:** ADR 0021. - **accepted-run execution and terminal artifact production:** ADR 0022. +- **posterior topic-context analysis-run claim boundary:** ADR 0068. - **independent lineage criterion and posterior Project Journey:** ADR 0023. - **macOS-native Rust-owned MLX Metal execution:** ADR 0024. diff --git a/docs/doctoring/topic-context-posterior-analysis-run.md b/docs/doctoring/topic-context-posterior-analysis-run.md new file mode 100644 index 000000000..c7d982d54 --- /dev/null +++ b/docs/doctoring/topic-context-posterior-analysis-run.md @@ -0,0 +1,16 @@ +# Posterior topic-context analysis-run composition + +**Active slice:** ADR 0068 / `topic_context_posterior_v1` +**Protected-main status:** not implemented-main + +`analysis_engine` already validates digest-bound posterior topic-context +artifacts through `TopicContextPosteriorArtifact`. This slice binds that +producer contract to a cutoff-safe analysis-run profile so an operator can +request a digest-bound terminal result. + +The executor does not infer topic importance, does not collapse missing +draws, and does not invent birth/split/merge events. Lineage events remain +producer-supplied. It is not a Bayesian sampler and not GPU execution. + +Exact-head Checks and two independent approvals are required before any +implemented-main claim. From 3e09ff29cc89ef97a859f3ae50e1297846dd2eeb Mon Sep 17 00:00:00 2001 From: Seongho Bae Date: Tue, 1 Sep 2026 11:49:44 +0900 Subject: [PATCH 2/2] fix(analysis): bind posterior runs to eligible snapshots --- CHANGELOG.md | 2 +- crates/analysis_engine/src/lib.rs | 7 +- .../src/topic_context_posterior.rs | 70 ++++- ...ic_context_posterior_execution_contract.rs | 270 ++++++++++++++++-- ...68-topic-context-posterior-analysis-run.md | 18 +- .../topic-context-posterior-analysis-run.md | 6 + 6 files changed, 332 insertions(+), 41 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97ba332e2..e13b234cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,7 +38,7 @@ All notable changes to TEPP are documented here. The format follows Keep a Chang ## [Unreleased] -- **Posterior topic-context analysis-run profile**: cutoff-safe `topic_context_posterior_v1` binds `TopicContextPosteriorArtifact` and refuses importance, collapsed draws, and invented birth/split/merge (`analysis_engine`). Not a Bayesian sampler and not implemented-main. +- **Posterior topic-context analysis-run profile**: cutoff-safe `topic_context_posterior_v1` binds `TopicContextPosteriorArtifact` to an authoritative source/artifact digest manifest, rejects missing or post-cutoff document availability and unapproved producer contracts, derives the validated coordinate count, and refuses importance, collapsed draws, and invented birth/split/merge (`analysis_engine`). Not a Bayesian sampler and not implemented-main. - `event_core` adds bounded Allen interval-consistency classification, atomic path-consistency closure, contradiction/resource refusals, and an explicit dependency-error fallback without claiming unrestricted global satisfiability. diff --git a/crates/analysis_engine/src/lib.rs b/crates/analysis_engine/src/lib.rs index 960fa9d3b..741f10163 100644 --- a/crates/analysis_engine/src/lib.rs +++ b/crates/analysis_engine/src/lib.rs @@ -51,9 +51,10 @@ pub use lineage_criterion::{ /// Bounded posterior topic-context producer contract and record types. pub use topic_context_posterior::{ TOPIC_CONTEXT_POSTERIOR_BYTE_LIMIT, TOPIC_CONTEXT_POSTERIOR_MODEL_CONTRACT_VERSION, - TOPIC_CONTEXT_POSTERIOR_OUTPUT_PROFILE, TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION, - TopicActivityInterval, TopicContextMembership, TopicContextPosteriorArtifact, - TopicContextPosteriorExecution, TopicDocumentRelation, TopicLineageEvent, + TOPIC_CONTEXT_POSTERIOR_OUTPUT_PROFILE, TOPIC_CONTEXT_POSTERIOR_PRODUCER_CONTRACT_VERSION, + TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION, TopicActivityInterval, TopicContextMembership, + TopicContextPosteriorArtifact, TopicContextPosteriorExecution, + TopicContextPosteriorSnapshotManifest, TopicDocumentRelation, TopicLineageEvent, TopicPostPlausibleValue, execute_topic_context_posterior_run, }; /// Topic-lineage artifact and execution contracts from this engine. diff --git a/crates/analysis_engine/src/topic_context_posterior.rs b/crates/analysis_engine/src/topic_context_posterior.rs index e5da785db..1297613e6 100644 --- a/crates/analysis_engine/src/topic_context_posterior.rs +++ b/crates/analysis_engine/src/topic_context_posterior.rs @@ -19,6 +19,8 @@ pub const TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION: &str = "tepp.topic_context_pos pub const TOPIC_CONTEXT_POSTERIOR_BYTE_LIMIT: usize = 16 * 1024 * 1024; /// Model contract required by the topic-context posterior analysis-run path. pub const TOPIC_CONTEXT_POSTERIOR_MODEL_CONTRACT_VERSION: &str = "topic_context_posterior_v1"; +/// Producer model contract accepted by the analysis-run profile. +pub const TOPIC_CONTEXT_POSTERIOR_PRODUCER_CONTRACT_VERSION: &str = "trsl-tm-v1"; /// Analysis-run output profile required for a topic-context posterior artifact. pub const TOPIC_CONTEXT_POSTERIOR_OUTPUT_PROFILE: &str = "topic_context_posterior_v1"; const TOPIC_CONTEXT_POSTERIOR_INFERENCE_STATUS: &str = "posterior_topic_coordinates_not_importance"; @@ -159,6 +161,21 @@ pub struct TopicContextPosteriorArtifact { pub inference_status: String, } +/// Authoritative snapshot and cutoff-eligibility manifest for one artifact. +#[derive(Clone, Debug, Eq, PartialEq)] +pub struct TopicContextPosteriorSnapshotManifest { + /// Immutable source snapshot identity. + pub snapshot_id: String, + /// Canonical digest of the resolved source snapshot bytes. + pub source_snapshot_sha256: String, + /// Historical cutoff applied while resolving eligibility. + pub knowledge_cutoff: String, + /// Canonical digest of the exact artifact admitted from this snapshot. + pub artifact_sha256: String, + /// Availability instant for every document represented by the artifact. + pub document_available_at: BTreeMap, +} + fn digest(value: &str) -> bool { value.len() == 64 && value @@ -669,40 +686,65 @@ pub struct TopicContextPosteriorExecution { pub fn execute_topic_context_posterior_run( request: &AnalysisRunRequest, accepted: &AnalysisRunAccepted, - snapshot_id: &str, - knowledge_cutoff: KnowledgeCutoff, + manifest: &TopicContextPosteriorSnapshotManifest, artifact: &TopicContextPosteriorArtifact, completed_at: impl Into, ) -> Result { request.to_json()?; accepted.to_json()?; require_receipt_identity(request, accepted)?; - if request.snapshot_id != snapshot_id || artifact.snapshot_id != snapshot_id { + if request.snapshot_id != manifest.snapshot_id || artifact.snapshot_id != manifest.snapshot_id { return Err(AnalysisEngineError::SnapshotMismatch); } - if request.knowledge_cutoff != knowledge_cutoff.to_rfc3339() - || artifact.knowledge_cutoff != knowledge_cutoff.to_rfc3339() + let knowledge_cutoff = + canonical_time(&manifest.knowledge_cutoff).ok_or(AnalysisEngineError::InvalidEvidence)?; + if request.knowledge_cutoff != manifest.knowledge_cutoff + || artifact.knowledge_cutoff != manifest.knowledge_cutoff + || artifact.source_snapshot_sha256 != manifest.source_snapshot_sha256 || request.model_contract_version != TOPIC_CONTEXT_POSTERIOR_MODEL_CONTRACT_VERSION || request.output_profile != TOPIC_CONTEXT_POSTERIOR_OUTPUT_PROFILE + || artifact.model_contract_version != TOPIC_CONTEXT_POSTERIOR_PRODUCER_CONTRACT_VERSION || artifact.run_id != accepted.run_id || artifact.inference_status != TOPIC_CONTEXT_POSTERIOR_INFERENCE_STATUS + || !digest(&manifest.source_snapshot_sha256) + || !digest(&manifest.artifact_sha256) { return Err(AnalysisEngineError::InvalidEvidence); } let digest = artifact.sha256()?; + if digest != manifest.artifact_sha256 { + return Err(AnalysisEngineError::InvalidEvidence); + } let mut document_ids = BTreeSet::new(); for value in &artifact.plausible_values { - document_ids.insert(value.document_id.as_str()); + document_ids.insert(value.document_id.clone()); } - let document_count = - u64::try_from(document_ids.len()).map_err(|_| AnalysisEngineError::ArithmeticOverflow)?; - let summary = AnalysisResultSummary::new( - "topic_context_posterior", - document_count, - 3, - TOPIC_CONTEXT_POSTERIOR_INFERENCE_STATUS, - )?; + if document_ids.len() != manifest.document_available_at.len() + || document_ids.iter().any(|document_id| { + manifest + .document_available_at + .get(document_id) + .and_then(|available_at| canonical_time(available_at)) + .is_none_or(|available_at| available_at > knowledge_cutoff) + }) + { + return Err(AnalysisEngineError::InvalidEvidence); + } + // Artifact validation bounds the canonical payload to 16 MiB, so both + // counts are far below the public summary limit and fit in u64. + let document_count = document_ids.len() as u64; + let statistic_count = artifact + .plausible_values + .iter() + .map(|value| value.logistic_normal_coordinates.len() as u64) + .sum(); + let summary = AnalysisResultSummary { + analysis_family: "topic_context_posterior".into(), + evidence_count: document_count, + statistic_count, + validation_status: TOPIC_CONTEXT_POSTERIOR_INFERENCE_STATUS.into(), + }; let terminal_result = AnalysisRunTerminalResult::succeeded( request, accepted, diff --git a/crates/analysis_engine/tests/topic_context_posterior_execution_contract.rs b/crates/analysis_engine/tests/topic_context_posterior_execution_contract.rs index d7ce40bf2..e2c3b8d31 100644 --- a/crates/analysis_engine/tests/topic_context_posterior_execution_contract.rs +++ b/crates/analysis_engine/tests/topic_context_posterior_execution_contract.rs @@ -1,18 +1,16 @@ //! End-to-end contract for cutoff-safe posterior topic-context analysis-run. +use std::collections::BTreeMap; + use analysis_engine::{ AnalysisEngineError, TOPIC_CONTEXT_POSTERIOR_MODEL_CONTRACT_VERSION, TOPIC_CONTEXT_POSTERIOR_OUTPUT_PROFILE, TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION, TopicActivityInterval, TopicContextMembership, TopicContextPosteriorArtifact, - TopicDocumentRelation, TopicPostPlausibleValue, execute_topic_context_posterior_run, + TopicContextPosteriorSnapshotManifest, TopicDocumentRelation, TopicPostPlausibleValue, + execute_topic_context_posterior_run, }; -use temporal_core::KnowledgeCutoff; use tepp_api::{AnalysisRunAccepted, AnalysisRunRequest, AnalysisRunTerminalState}; -fn cutoff() -> KnowledgeCutoff { - KnowledgeCutoff::parse_rfc3339("2026-08-01T00:00:00Z").expect("cutoff") -} - fn artifact() -> TopicContextPosteriorArtifact { let documents = [ "018f3f7a-7b7c-7d00-8000-000000000001", @@ -99,6 +97,25 @@ fn request() -> AnalysisRunRequest { } } +fn manifest(artifact: &TopicContextPosteriorArtifact) -> TopicContextPosteriorSnapshotManifest { + TopicContextPosteriorSnapshotManifest { + snapshot_id: artifact.snapshot_id.clone(), + source_snapshot_sha256: artifact.source_snapshot_sha256.clone(), + knowledge_cutoff: artifact.knowledge_cutoff.clone(), + artifact_sha256: artifact.sha256().expect("artifact digest"), + document_available_at: BTreeMap::from([ + ( + "018f3f7a-7b7c-7d00-8000-000000000001".into(), + "2026-07-20T00:00:00Z".into(), + ), + ( + "018f3f7a-7b7c-7d00-8000-000000000002".into(), + "2026-08-01T00:00:00Z".into(), + ), + ]), + } +} + fn accepted(request: &AnalysisRunRequest) -> AnalysisRunAccepted { AnalysisRunAccepted::new( "run-topic-context-posterior", @@ -111,12 +128,12 @@ fn accepted(request: &AnalysisRunRequest) -> AnalysisRunAccepted { fn execute( request: &AnalysisRunRequest, ) -> Result { + let artifact = artifact(); execute_topic_context_posterior_run( request, &accepted(request), - "snapshot-topic-context-posterior", - cutoff(), - &artifact(), + &manifest(&artifact), + &artifact, "2026-08-02T00:00:00Z", ) } @@ -147,6 +164,15 @@ fn validated_posterior_emits_digest_without_claiming_importance() { execution.terminal_result.result_schema_version.as_deref(), Some(TOPIC_CONTEXT_POSTERIOR_SCHEMA_VERSION) ); + assert_eq!( + execution + .terminal_result + .summary + .as_ref() + .expect("summary") + .statistic_count, + 4 + ); } #[test] @@ -154,25 +180,39 @@ fn producer_contract_refusal_and_run_identity_mismatch_fail_closed() { let request = request(); let mut invalid = artifact(); invalid.plausible_values.pop(); + let invalid_manifest = manifest(&artifact()); assert_eq!( execute_topic_context_posterior_run( &request, &accepted(&request), - "snapshot-topic-context-posterior", - cutoff(), + &invalid_manifest, &invalid, "2026-08-02T00:00:00Z", ), Err(AnalysisEngineError::InvalidEvidence) ); + + let original_artifact = artifact(); + let mut artifact_snapshot_mismatch = original_artifact.clone(); + artifact_snapshot_mismatch.snapshot_id = "other-snapshot".into(); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &manifest(&original_artifact), + &artifact_snapshot_mismatch, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::SnapshotMismatch) + ); let mut mismatched_run = artifact(); mismatched_run.run_id = "other-run".into(); + let mismatched_manifest = manifest(&mismatched_run); assert_eq!( execute_topic_context_posterior_run( &request, &accepted(&request), - "snapshot-topic-context-posterior", - cutoff(), + &mismatched_manifest, &mismatched_run, "2026-08-02T00:00:00Z", ), @@ -183,13 +223,15 @@ fn producer_contract_refusal_and_run_identity_mismatch_fail_closed() { #[test] fn execution_refuses_snapshot_profile_and_cutoff_mismatch() { let request = request(); + let artifact = artifact(); + let mut mismatched_manifest = manifest(&artifact); + mismatched_manifest.snapshot_id = "other-snapshot".into(); assert_eq!( execute_topic_context_posterior_run( &request, &accepted(&request), - "other-snapshot", - cutoff(), - &artifact(), + &mismatched_manifest, + &artifact, "2026-08-02T00:00:00Z", ), Err(AnalysisEngineError::SnapshotMismatch) @@ -242,3 +284,199 @@ fn execution_refuses_snapshot_profile_and_cutoff_mismatch() { ); } } + +#[test] +fn execution_binds_snapshot_digest_availability_and_producer_contract() { + let request = request(); + let artifact = artifact(); + + let mut wrong_snapshot_digest = manifest(&artifact); + wrong_snapshot_digest.source_snapshot_sha256 = "1".repeat(64); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &wrong_snapshot_digest, + &artifact, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); + + let mut future_evidence = manifest(&artifact); + future_evidence.document_available_at.insert( + "018f3f7a-7b7c-7d00-8000-000000000001".into(), + "2026-08-01T00:00:01Z".into(), + ); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &future_evidence, + &artifact, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); + + let mut foreign_producer = artifact.clone(); + foreign_producer.model_contract_version = "unapproved-producer-v1".into(); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &manifest(&foreign_producer), + &foreign_producer, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); + + for invalid_artifact in [ + { + let mut value = artifact.clone(); + value.knowledge_cutoff = "2026-07-31T23:59:59Z".into(); + value + }, + { + let mut value = artifact.clone(); + value.inference_status = "topic_importance".into(); + value + }, + ] { + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &manifest(&artifact), + &invalid_artifact, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); + } +} + +#[test] +fn execution_rejects_unbound_artifact_and_availability_manifests() { + let request = request(); + let artifact = artifact(); + + let mut wrong_artifact_digest = manifest(&artifact); + wrong_artifact_digest.artifact_sha256 = "1".repeat(64); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &wrong_artifact_digest, + &artifact, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); + + let mut incomplete_availability = manifest(&artifact); + incomplete_availability.document_available_at.pop_first(); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &incomplete_availability, + &artifact, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); + + let mut malformed_availability = manifest(&artifact); + *malformed_availability + .document_available_at + .first_entry() + .expect("document") + .get_mut() = "not-a-time".into(); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &malformed_availability, + &artifact, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); + + let mut malformed_manifest_digest = manifest(&artifact); + malformed_manifest_digest.artifact_sha256 = "not-a-digest".into(); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &malformed_manifest_digest, + &artifact, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); + + let mut malformed_source_digest = manifest(&artifact); + malformed_source_digest.source_snapshot_sha256 = "not-a-digest".into(); + let mut matching_malformed_source = artifact.clone(); + matching_malformed_source.source_snapshot_sha256 = "not-a-digest".into(); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &malformed_source_digest, + &matching_malformed_source, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); + + let mut substituted_availability = manifest(&artifact); + substituted_availability.document_available_at.pop_first(); + substituted_availability.document_available_at.insert( + "018f3f7a-7b7c-7d00-8000-000000000099".into(), + "2026-07-20T00:00:00Z".into(), + ); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &substituted_availability, + &artifact, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); +} + +#[test] +fn execution_rejects_malformed_manifest_and_completion_times() { + let request = request(); + let artifact = artifact(); + + let mut malformed_cutoff = manifest(&artifact); + malformed_cutoff.knowledge_cutoff = "not-a-time".into(); + assert_eq!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &malformed_cutoff, + &artifact, + "2026-08-02T00:00:00Z", + ), + Err(AnalysisEngineError::InvalidEvidence) + ); + + assert!( + execute_topic_context_posterior_run( + &request, + &accepted(&request), + &manifest(&artifact), + &artifact, + "not-a-time", + ) + .is_err() + ); +} diff --git a/docs/adr/0068-topic-context-posterior-analysis-run.md b/docs/adr/0068-topic-context-posterior-analysis-run.md index 555e032ca..bce2dbf69 100644 --- a/docs/adr/0068-topic-context-posterior-analysis-run.md +++ b/docs/adr/0068-topic-context-posterior-analysis-run.md @@ -29,13 +29,17 @@ Add the `topic_context_posterior_v1` analysis-run output profile to `analysis_engine`. The executor: - consumes an already-constructed `TopicContextPosteriorArtifact`; -- requires the request snapshot, knowledge cutoff, and accepted run - identity to match the offered artifact; +- requires an authoritative snapshot manifest to bind the request and artifact + snapshot identity, source digest, cutoff, exact artifact digest, and every + represented document's availability time; +- rejects missing, extra, malformed, or post-cutoff document availability and + artifacts not emitted under the approved `trsl-tm-v1` producer contract; - invokes the existing producer `sha256`/validate path without reimplementing TRSL-TM fitting; - emits a digest-bound terminal result under `tepp.topic_context_posterior.v1` with inference status - `posterior_topic_coordinates_not_importance`; + `posterior_topic_coordinates_not_importance` and counts the coordinates + actually present rather than a fixed statistic count; - refuses reuse of `lineage_criterion_v1`, `case_deletion_refit_v1`, `composed_fitted_lineage_v1`, `fitted_candidate_k_v1`, `trsl_topic_lineage_v1`, and `method_effects_v1` as this profile; @@ -61,15 +65,15 @@ This is posterior topic coordinates, not importance and not a sampler. Operators can request cutoff-safe posterior topic-context validation as a digest-bound terminal result. The artifact does not claim topic importance, Bayesian sampling, GPU parity, or invented birth/split/merge. -Snapshot/profile/cutoff mismatch and producer-contract refusal fail -closed. +Snapshot/profile/cutoff/digest mismatch, incomplete cutoff eligibility, and +producer-contract refusal fail closed. ## Verification The PR includes Rust integration tests for successful digest-bound coordinates, incomplete draw refusal, run-identity mismatch, -snapshot/profile/cutoff mismatch including reuse of live sibling -profiles. Run: +snapshot/profile/cutoff/source/artifact-digest mismatch, future evidence, +producer-contract mismatch, and reuse of live sibling profiles. Run: ```text cargo fmt --all -- --check diff --git a/docs/doctoring/topic-context-posterior-analysis-run.md b/docs/doctoring/topic-context-posterior-analysis-run.md index c7d982d54..c4a365bed 100644 --- a/docs/doctoring/topic-context-posterior-analysis-run.md +++ b/docs/doctoring/topic-context-posterior-analysis-run.md @@ -8,6 +8,12 @@ artifacts through `TopicContextPosteriorArtifact`. This slice binds that producer contract to a cutoff-safe analysis-run profile so an operator can request a digest-bound terminal result. +Execution requires one authoritative snapshot manifest. It binds the source +snapshot digest and exact artifact digest, provides an availability instant for +every represented document, rejects evidence available after the historical +cutoff, and admits only the `trsl-tm-v1` producer contract. The terminal summary +counts the logistic-normal coordinates actually validated. + The executor does not infer topic importance, does not collapse missing draws, and does not invent birth/split/merge events. Lineage events remain producer-supplied. It is not a Bayesian sampler and not GPU execution.