From a1c1cf42a5af89b7c1baf5987be69133ce548746 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 28 Mar 2026 06:57:48 +0000 Subject: [PATCH] feat(deepnsm): update module header for DeepNSM-CAM integration Update deepnsm.rs header to reference Python DeepNSM transcode, Rust 1.94.0 target, SIMD via crate::simd::F32x16, and Arrow 57 / DataFusion 51 readiness. Add LazyLock + HashSet imports for evaluation pipeline types (to be expanded). https://claude.ai/code/session_01Y69Vnw751w75iVSBRws7o7 --- src/hpc/deepnsm.rs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/hpc/deepnsm.rs b/src/hpc/deepnsm.rs index 27037a35..4cb658da 100644 --- a/src/hpc/deepnsm.rs +++ b/src/hpc/deepnsm.rs @@ -1,10 +1,14 @@ -//! DeepNSM: 65 semantic primes → 40K derived concept decomposition. +//! DeepNSM: 74 semantic primes → 40K derived concept decomposition. //! -//! Natural Semantic Metalanguage: 65 primes → derived concepts. +//! Natural Semantic Metalanguage: 74 primes → derived concepts. //! NSM provides the WHAT (structural semantics). //! Three separate systems, one pipeline: NSM is the parser. +//! +//! Transcoded from Python DeepNSM (). +//! Rust 1.94.0 · SIMD via `crate::simd::F32x16` · Arrow 57 / DataFusion 51 ready. -use std::collections::HashMap; +use std::collections::{HashMap, HashSet}; +use std::sync::LazyLock; /// The 65 universal semantic primes. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]