m1nd-core 1.5.0

Core graph engine and reasoning primitives for m1nd.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
// === crates/m1nd-core/src/plasticity.rs ===

use crate::error::{M1ndError, M1ndResult};
use crate::graph::Graph;
use crate::types::*;

// ---------------------------------------------------------------------------
// Constants from plasticity.py
// ---------------------------------------------------------------------------

pub const DEFAULT_LEARNING_RATE: f32 = 0.08;
pub const DEFAULT_DECAY_RATE: f32 = 0.005;
pub const LTP_THRESHOLD: u16 = 5;
pub const LTD_THRESHOLD: u16 = 5;
pub const LTP_BONUS: f32 = 0.15;
pub const LTD_PENALTY: f32 = 0.15;
pub const HOMEOSTATIC_CEILING: f32 = 5.0;
pub const WEIGHT_FLOOR: f32 = 0.05;
pub const WEIGHT_CAP: f32 = 3.0;
/// Default ring buffer capacity for query memory (FM-PL-005).
pub const DEFAULT_MEMORY_CAPACITY: usize = 1000;
/// CAS retry limit for atomic weight updates (FM-ACT-019).
pub const CAS_RETRY_LIMIT: u32 = 64;

// ---------------------------------------------------------------------------
// SynapticState — per-edge learning state snapshot
// Replaces: plasticity.py SynapticState
// ---------------------------------------------------------------------------

/// Snapshot of per-edge learning state for persistence.
/// Replaces: plasticity.py SynapticState dataclass
#[derive(Clone, Debug, serde::Serialize, serde::Deserialize)]
pub struct SynapticState {
    pub source_label: String,
    pub target_label: String,
    pub relation: String,
    /// Complete edge identity for current sidecars. `None` marks a legacy
    /// triple-only row and is accepted only when that triple is unambiguous.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub direction: Option<u8>,
    /// Complete edge identity for current sidecars. See [`Self::direction`].
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub inhibitory: Option<bool>,
    pub original_weight: f32,
    pub current_weight: f32,
    pub strengthen_count: u16,
    pub weaken_count: u16,
    pub ltp_applied: bool,
    pub ltd_applied: bool,
    #[serde(default)]
    pub last_used_query: u32,
}

fn validate_synaptic_state(state: &SynapticState) -> M1ndResult<()> {
    if !state.original_weight.is_finite() || !state.current_weight.is_finite() {
        return Err(M1ndError::CorruptState {
            reason: format!(
                "non-finite weight in synaptic state: {}->{}",
                state.source_label, state.target_label
            ),
        });
    }
    match (state.direction, state.inhibitory) {
        (None, None) => {}
        (Some(direction), Some(_)) if direction <= EdgeDirection::Bidirectional as u8 => {}
        (Some(direction), Some(_)) => {
            return Err(M1ndError::CorruptState {
                reason: format!(
                    "unknown synaptic direction {direction} for {}->{}",
                    state.source_label, state.target_label
                ),
            });
        }
        _ => {
            return Err(M1ndError::CorruptState {
                reason: format!(
                    "partial synaptic identity for {}->{}",
                    state.source_label, state.target_label
                ),
            });
        }
    }
    Ok(())
}

/// Encode synaptic state using the existing pretty-JSON sidecar format.
///
/// The historical NaN firewall is preserved: a non-finite current weight falls
/// back to its finite original weight. A non-finite original has no trustworthy
/// fallback and is rejected.
pub fn encode_plasticity_state_json(states: &[SynapticState]) -> M1ndResult<Vec<u8>> {
    let mut safe_states = Vec::with_capacity(states.len());
    for state in states {
        let mut safe = state.clone();
        if !safe.original_weight.is_finite() {
            return Err(M1ndError::CorruptState {
                reason: format!(
                    "non-finite original weight in synaptic state: {}->{}",
                    safe.source_label, safe.target_label
                ),
            });
        }
        if !safe.current_weight.is_finite() {
            safe.current_weight = safe.original_weight;
        }
        validate_synaptic_state(&safe)?;
        safe_states.push(safe);
    }
    serde_json::to_vec_pretty(&safe_states).map_err(M1ndError::Serde)
}

/// Decode a current checkpoint plasticity payload. Unlike the compatibility
/// file loader, this boundary requires the complete edge identity and every
/// current field, and rejects unknown fields rather than defaulting them.
pub fn decode_plasticity_state_json(bytes: &[u8]) -> M1ndResult<Vec<SynapticState>> {
    const CURRENT_FIELDS: &[&str] = &[
        "source_label",
        "target_label",
        "relation",
        "direction",
        "inhibitory",
        "original_weight",
        "current_weight",
        "strengthen_count",
        "weaken_count",
        "ltp_applied",
        "ltd_applied",
        "last_used_query",
    ];
    let value: serde_json::Value = serde_json::from_slice(bytes).map_err(M1ndError::Serde)?;
    let rows = value.as_array().ok_or_else(|| M1ndError::CorruptState {
        reason: "current plasticity checkpoint is not a JSON array".into(),
    })?;
    for (index, row) in rows.iter().enumerate() {
        let object = row.as_object().ok_or_else(|| M1ndError::CorruptState {
            reason: format!("plasticity row {index} is not an object"),
        })?;
        if object.len() != CURRENT_FIELDS.len()
            || CURRENT_FIELDS
                .iter()
                .any(|field| !object.contains_key(*field))
        {
            return Err(M1ndError::CorruptState {
                reason: format!(
                    "plasticity row {index} is not the complete current checkpoint schema"
                ),
            });
        }
    }
    let states: Vec<SynapticState> = serde_json::from_slice(bytes).map_err(M1ndError::Serde)?;
    for state in &states {
        validate_synaptic_state(state)?;
        if state.direction.is_none() || state.inhibitory.is_none() {
            return Err(M1ndError::CorruptState {
                reason: format!(
                    "legacy plasticity identity is not authoritative for {}->{}",
                    state.source_label, state.target_label
                ),
            });
        }
    }
    Ok(states)
}

// ---------------------------------------------------------------------------
// QueryRecord — per-query metadata for memory
// Replaces: plasticity.py QueryRecord
// ---------------------------------------------------------------------------

/// Record of a single query for the memory ring buffer.
/// Replaces: plasticity.py QueryRecord
#[derive(Clone, Debug)]
pub struct QueryRecord {
    pub query_text: String,
    pub seeds: Vec<NodeId>,
    pub activated_nodes: Vec<NodeId>,
    pub timestamp: f64,
}

// ---------------------------------------------------------------------------
// QueryMemory — bounded ring buffer (FM-PL-005)
// Replaces: plasticity.py QueryMemory
// ---------------------------------------------------------------------------

/// Bounded ring buffer of recent queries. Fixed capacity prevents unbounded growth.
/// Tracks node frequency and seed bigrams for priming.
/// FM-PL-005: ring buffer replaces unbounded Vec.
/// Replaces: plasticity.py QueryMemory
pub struct QueryMemory {
    records: Vec<Option<QueryRecord>>,
    capacity: usize,
    write_head: usize,
    /// Node access frequency (how often each node appears in recent queries).
    node_frequency: Vec<u32>,
    /// Seed bigram frequency: pairs of seeds that co-occur.
    seed_bigrams: std::collections::HashMap<(NodeId, NodeId), u32>,
}

impl QueryMemory {
    pub fn new(capacity: usize, num_nodes: u32) -> Self {
        Self {
            records: vec![None; capacity],
            capacity,
            write_head: 0,
            node_frequency: vec![0; num_nodes as usize],
            seed_bigrams: std::collections::HashMap::new(),
        }
    }

    /// Record a query. Overwrites oldest if at capacity.
    /// Replaces: plasticity.py QueryMemory.record()
    pub fn record(&mut self, record: QueryRecord) {
        // If overwriting an old record, decrement its frequency counts
        if let Some(old) = &self.records[self.write_head] {
            for &node in &old.activated_nodes {
                let idx = node.as_usize();
                if idx < self.node_frequency.len() {
                    self.node_frequency[idx] = self.node_frequency[idx].saturating_sub(1);
                }
            }
            // Decrement bigram counts
            for i in 0..old.seeds.len() {
                for j in (i + 1)..old.seeds.len() {
                    let key = if old.seeds[i] < old.seeds[j] {
                        (old.seeds[i], old.seeds[j])
                    } else {
                        (old.seeds[j], old.seeds[i])
                    };
                    if let Some(count) = self.seed_bigrams.get_mut(&key) {
                        *count = count.saturating_sub(1);
                    }
                }
            }
        }

        // Increment frequency counts for new record
        for &node in &record.activated_nodes {
            let idx = node.as_usize();
            if idx < self.node_frequency.len() {
                self.node_frequency[idx] += 1;
            }
        }

        // Update seed bigrams
        for i in 0..record.seeds.len() {
            for j in (i + 1)..record.seeds.len() {
                let key = if record.seeds[i] < record.seeds[j] {
                    (record.seeds[i], record.seeds[j])
                } else {
                    (record.seeds[j], record.seeds[i])
                };
                *self.seed_bigrams.entry(key).or_insert(0) += 1;
            }
        }

        self.records[self.write_head] = Some(record);
        self.write_head = (self.write_head + 1) % self.capacity;
    }

    /// Get priming signal: nodes that frequently co-occur with the given seeds.
    /// Replaces: plasticity.py QueryMemory.get_priming_signal()
    pub fn get_priming_signal(
        &self,
        seeds: &[NodeId],
        boost_strength: FiniteF32,
    ) -> Vec<(NodeId, FiniteF32)> {
        if seeds.is_empty() {
            return Vec::new();
        }

        // Find nodes that frequently appear in queries containing these seeds
        let mut node_scores: std::collections::HashMap<u32, f32> = std::collections::HashMap::new();

        for record in self.records.iter().flatten() {
            // Check if this record shares any seeds
            let shared = seeds.iter().any(|s| record.seeds.contains(s));
            if !shared {
                continue;
            }

            for &node in &record.activated_nodes {
                if !seeds.contains(&node) {
                    *node_scores.entry(node.0).or_insert(0.0) += 1.0;
                }
            }
        }

        // Normalize and apply boost strength
        let max_score = node_scores.values().cloned().fold(0.0f32, f32::max);
        if max_score <= 0.0 {
            return Vec::new();
        }

        let mut results: Vec<(NodeId, FiniteF32)> = node_scores
            .into_iter()
            .map(|(id, score)| {
                let normalized = (score / max_score) * boost_strength.get();
                (NodeId::new(id), FiniteF32::new(normalized.min(1.0)))
            })
            .filter(|(_, s)| s.get() > 0.01)
            .collect();

        results.sort_by_key(|entry| std::cmp::Reverse(entry.1));
        results.truncate(50); // Cap priming signals
        results
    }

    /// Number of recorded queries.
    pub fn len(&self) -> usize {
        self.records.iter().filter(|r| r.is_some()).count()
    }

    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }

    /// Return the top `n` nodes by accumulated query-access frequency.
    ///
    /// This is the cheapest "what has this agent been paying attention to" signal:
    /// it reads directly from the in-memory ring-buffer frequency counter without
    /// any graph traversal or seed requirement.  Returns `(NodeId, frequency)` pairs
    /// sorted descending by frequency, capped at `n`.
    pub fn top_node_frequencies(&self, n: usize) -> Vec<(NodeId, u32)> {
        let mut indexed: Vec<(NodeId, u32)> = self
            .node_frequency
            .iter()
            .enumerate()
            .filter(|(_, &freq)| freq > 0)
            .map(|(idx, &freq)| (NodeId::new(idx as u32), freq))
            .collect();
        // Partial sort: top-k by descending frequency
        indexed.sort_unstable_by_key(|b| std::cmp::Reverse(b.1));
        indexed.truncate(n);
        indexed
    }
}

// ---------------------------------------------------------------------------
// PlasticityConfig — tunables
// ---------------------------------------------------------------------------

/// Plasticity engine configuration.
/// Replaces: plasticity.py PlasticityEngine.__init__ parameters
pub struct PlasticityConfig {
    pub learning_rate: LearningRate,
    pub decay_rate: PosF32,
    pub ltp_threshold: u16,
    pub ltd_threshold: u16,
    pub ltp_bonus: FiniteF32,
    pub ltd_penalty: FiniteF32,
    pub homeostatic_ceiling: FiniteF32,
    pub weight_floor: FiniteF32,
    pub weight_cap: FiniteF32,
    pub memory_capacity: usize,
    pub cas_retry_limit: u32,
}

impl Default for PlasticityConfig {
    fn default() -> Self {
        Self {
            learning_rate: LearningRate::DEFAULT,
            decay_rate: PosF32::new(DEFAULT_DECAY_RATE).unwrap(),
            ltp_threshold: LTP_THRESHOLD,
            ltd_threshold: LTD_THRESHOLD,
            ltp_bonus: FiniteF32::new(LTP_BONUS),
            ltd_penalty: FiniteF32::new(LTD_PENALTY),
            homeostatic_ceiling: FiniteF32::new(HOMEOSTATIC_CEILING),
            weight_floor: FiniteF32::new(WEIGHT_FLOOR),
            weight_cap: FiniteF32::new(WEIGHT_CAP),
            memory_capacity: DEFAULT_MEMORY_CAPACITY,
            cas_retry_limit: CAS_RETRY_LIMIT,
        }
    }
}

// ---------------------------------------------------------------------------
// PlasticityResult — output of a learning cycle
// ---------------------------------------------------------------------------

/// Result of a single plasticity update cycle.
#[derive(Clone, Debug)]
pub struct PlasticityResult {
    pub edges_strengthened: u32,
    pub edges_decayed: u32,
    pub ltp_events: u32,
    pub ltd_events: u32,
    pub homeostatic_rescales: u32,
    pub priming_nodes: u32,
}

// ---------------------------------------------------------------------------
// PlasticityEngine — Hebbian learning engine
// Replaces: plasticity.py PlasticityEngine
// ---------------------------------------------------------------------------

/// Hebbian plasticity engine with LTP/LTD, homeostatic normalization,
/// and query memory. Writes weights atomically to CSR (FM-ACT-021).
/// Checks graph generation on every operation (FM-PL-006).
/// Replaces: plasticity.py PlasticityEngine
pub struct PlasticityEngine {
    config: PlasticityConfig,
    memory: QueryMemory,
    /// Graph generation at engine init. Asserted on every operation (FM-PL-006).
    expected_generation: Generation,
    /// Query counter for last_used_query tracking.
    query_count: u32,
}

impl PlasticityEngine {
    /// Create engine bound to current graph generation.
    /// Replaces: plasticity.py PlasticityEngine.__init__()
    pub fn new(graph: &Graph, config: PlasticityConfig) -> Self {
        Self {
            memory: QueryMemory::new(config.memory_capacity, graph.num_nodes()),
            expected_generation: graph.generation,
            query_count: 0,
            config,
        }
    }

    /// Check graph generation match (FM-PL-006).
    fn check_generation(&self, graph: &Graph) -> M1ndResult<()> {
        if self.expected_generation != graph.generation {
            return Err(M1ndError::GraphGenerationMismatch {
                expected: self.expected_generation,
                actual: graph.generation,
            });
        }
        Ok(())
    }

    /// Full learning cycle: Hebbian strengthen + decay + LTP/LTD + homeostatic.
    /// Writes weights atomically to CSR via CAS (FM-ACT-021).
    /// Asserts graph generation match (FM-PL-006).
    /// Replaces: plasticity.py PlasticityEngine.query()
    pub fn update(
        &mut self,
        graph: &mut Graph,
        activated_nodes: &[(NodeId, FiniteF32)],
        seeds: &[(NodeId, FiniteF32)],
        query_text: &str,
    ) -> M1ndResult<PlasticityResult> {
        // FM-PL-006: generation check is relaxed for plasticity updates
        // since they modify weights (not structure)

        self.query_count += 1;

        // Build activated set for fast lookup
        let n = graph.num_nodes() as usize;
        let mut activated_set = vec![false; n];
        let mut act_map = std::collections::HashMap::new();
        for &(node, score) in activated_nodes {
            let idx = node.as_usize();
            if idx < n {
                activated_set[idx] = true;
                act_map.insert(node.0, score.get());
            }
        }

        // Step 1: Hebbian strengthen
        let edges_strengthened = self.hebbian_strengthen(graph, activated_nodes)?;

        // Step 2: Synaptic decay
        let edges_decayed = self.synaptic_decay(graph, &activated_set)?;

        // Step 3: LTP/LTD
        let (ltp_events, ltd_events) = self.apply_ltp_ltd(graph)?;

        // Step 4: Homeostatic normalization
        let homeostatic_rescales = self.homeostatic_normalize(graph)?;

        // Step 5: Record query in memory
        let record = QueryRecord {
            query_text: query_text.to_string(),
            seeds: seeds.iter().map(|s| s.0).collect(),
            activated_nodes: activated_nodes.iter().map(|a| a.0).collect(),
            timestamp: std::time::SystemTime::now()
                .duration_since(std::time::UNIX_EPOCH)
                .map(|d| d.as_secs_f64())
                .unwrap_or(0.0),
        };
        self.memory.record(record);

        let priming_nodes = self
            .memory
            .get_priming_signal(
                &seeds.iter().map(|s| s.0).collect::<Vec<_>>(),
                FiniteF32::new(0.1),
            )
            .len() as u32;

        Ok(PlasticityResult {
            edges_strengthened,
            edges_decayed,
            ltp_events,
            ltd_events,
            homeostatic_rescales,
            priming_nodes,
        })
    }

    /// Hebbian strengthening: delta_w = lr * act_src * act_tgt for co-activated edges.
    /// Replaces: plasticity.py PlasticityEngine._hebbian_strengthen()
    fn hebbian_strengthen(
        &self,
        graph: &mut Graph,
        activated: &[(NodeId, FiniteF32)],
    ) -> M1ndResult<u32> {
        let n = graph.num_nodes() as usize;
        let lr = self.config.learning_rate.get();
        let cap = self.config.weight_cap.get();
        let mut count = 0u32;

        // Build activation lookup
        let mut act_val = vec![0.0f32; n];
        for &(node, score) in activated {
            let idx = node.as_usize();
            if idx < n {
                act_val[idx] = score.get();
            }
        }

        // For each activated node, strengthen edges to co-activated neighbors
        for &(src, src_act) in activated {
            let range = graph.csr.out_range(src);
            for j in range {
                let tgt = graph.csr.targets[j];
                let tgt_idx = tgt.as_usize();
                if tgt_idx >= n {
                    continue;
                }
                let tgt_act = act_val[tgt_idx];
                if tgt_act <= 0.0 {
                    continue;
                }

                // Hebbian: delta_w = lr * act_src * act_tgt
                let delta = lr * src_act.get() * tgt_act;
                let edge_idx = EdgeIdx::new(j as u32);
                let current = graph.csr.read_weight(edge_idx).get();
                let new_weight = (current + delta).min(cap);

                let _ = graph.csr.atomic_write_weight(
                    edge_idx,
                    FiniteF32::new(new_weight),
                    self.config.cas_retry_limit,
                );

                // Update plasticity metadata
                if j < graph.edge_plasticity.strengthen_count.len() {
                    graph.edge_plasticity.strengthen_count[j] =
                        graph.edge_plasticity.strengthen_count[j].saturating_add(1);
                    graph.edge_plasticity.current_weight[j] = FiniteF32::new(new_weight);
                    graph.edge_plasticity.last_used_query[j] = self.query_count;
                }

                count += 1;
            }
        }

        Ok(count)
    }

    /// Synaptic decay: w *= (1 - decay_rate) for inactive edges.
    /// Replaces: plasticity.py PlasticityEngine._synaptic_decay()
    fn synaptic_decay(&self, graph: &mut Graph, activated_set: &[bool]) -> M1ndResult<u32> {
        let n = graph.num_nodes() as usize;
        let decay_factor = 1.0 - self.config.decay_rate.get();
        let floor = self.config.weight_floor.get();
        let mut count = 0u32;

        for (i, &is_activated) in activated_set.iter().enumerate().take(n) {
            if is_activated {
                continue; // Skip activated nodes
            }

            let range = graph.csr.out_range(NodeId::new(i as u32));
            for j in range {
                let edge_idx = EdgeIdx::new(j as u32);
                let current = graph.csr.read_weight(edge_idx).get();
                let new_weight = (current * decay_factor).max(floor);

                if (new_weight - current).abs() > 1e-6 {
                    let _ = graph.csr.atomic_write_weight(
                        edge_idx,
                        FiniteF32::new(new_weight),
                        self.config.cas_retry_limit,
                    );

                    if j < graph.edge_plasticity.weaken_count.len() {
                        graph.edge_plasticity.weaken_count[j] =
                            graph.edge_plasticity.weaken_count[j].saturating_add(1);
                        graph.edge_plasticity.current_weight[j] = FiniteF32::new(new_weight);
                    }

                    count += 1;
                }
            }
        }

        Ok(count)
    }

    /// LTP/LTD: permanent bonus/penalty after N consecutive strengthen/weaken.
    /// Replaces: plasticity.py PlasticityEngine._apply_ltp_ltd()
    fn apply_ltp_ltd(&self, graph: &mut Graph) -> M1ndResult<(u32, u32)> {
        let cap = self.config.weight_cap.get();
        let floor = self.config.weight_floor.get();
        let mut ltp_count = 0u32;
        let mut ltd_count = 0u32;

        let num_edges = graph.edge_plasticity.strengthen_count.len();
        for j in 0..num_edges {
            // LTP: sustained strengthening
            if !graph.edge_plasticity.ltp_applied[j]
                && graph.edge_plasticity.strengthen_count[j] >= self.config.ltp_threshold
            {
                let edge_idx = EdgeIdx::new(j as u32);
                let current = graph.csr.read_weight(edge_idx).get();
                let new_weight = (current + self.config.ltp_bonus.get()).min(cap);
                let _ = graph.csr.atomic_write_weight(
                    edge_idx,
                    FiniteF32::new(new_weight),
                    self.config.cas_retry_limit,
                );
                graph.edge_plasticity.ltp_applied[j] = true;
                graph.edge_plasticity.current_weight[j] = FiniteF32::new(new_weight);
                ltp_count += 1;
            }

            // LTD: sustained weakening
            if !graph.edge_plasticity.ltd_applied[j]
                && graph.edge_plasticity.weaken_count[j] >= self.config.ltd_threshold
            {
                let edge_idx = EdgeIdx::new(j as u32);
                let current = graph.csr.read_weight(edge_idx).get();
                let new_weight = (current - self.config.ltd_penalty.get()).max(floor);
                let _ = graph.csr.atomic_write_weight(
                    edge_idx,
                    FiniteF32::new(new_weight),
                    self.config.cas_retry_limit,
                );
                graph.edge_plasticity.ltd_applied[j] = true;
                graph.edge_plasticity.current_weight[j] = FiniteF32::new(new_weight);
                ltd_count += 1;
            }
        }

        Ok((ltp_count, ltd_count))
    }

    /// Homeostatic normalization: scale incoming weights if total exceeds ceiling.
    /// FM-PL-003 fix: tracks already-scaled edges to prevent bidirectional penalty.
    /// Replaces: plasticity.py PlasticityEngine._homeostatic_normalize()
    fn homeostatic_normalize(&self, graph: &mut Graph) -> M1ndResult<u32> {
        let n = graph.num_nodes() as usize;
        let ceiling = self.config.homeostatic_ceiling.get();
        let mut rescale_count = 0u32;

        for i in 0..n {
            // Sum incoming edge weights
            let range = graph.csr.in_range(NodeId::new(i as u32));
            let mut total_incoming = 0.0f32;
            for j in range.clone() {
                let fwd_idx = graph.csr.rev_edge_idx[j];
                total_incoming += graph.csr.read_weight(fwd_idx).get();
            }

            if total_incoming > ceiling {
                // Scale down all incoming edges proportionally
                let scale = ceiling / total_incoming;
                for j in range {
                    let fwd_idx = graph.csr.rev_edge_idx[j];
                    let current = graph.csr.read_weight(fwd_idx).get();
                    let new_weight = current * scale;
                    let _ = graph.csr.atomic_write_weight(
                        fwd_idx,
                        FiniteF32::new(new_weight),
                        self.config.cas_retry_limit,
                    );
                    if fwd_idx.as_usize() < graph.edge_plasticity.current_weight.len() {
                        graph.edge_plasticity.current_weight[fwd_idx.as_usize()] =
                            FiniteF32::new(new_weight);
                    }
                }
                rescale_count += 1;
            }
        }

        Ok(rescale_count)
    }

    /// Export synaptic state for persistence.
    /// FM-PL-008 fix: atomic write (temp file + rename).
    /// FM-PL-001 NaN firewall: non-finite weights fall back to original.
    /// Replaces: plasticity.py PlasticityEngine.export_state()
    pub fn export_state(&self, graph: &Graph) -> M1ndResult<Vec<SynapticState>> {
        let n = graph.num_nodes() as usize;
        let num_plasticity = graph.edge_plasticity.original_weight.len();
        let num_csr = graph.csr.num_edges();
        if num_plasticity != num_csr
            || graph.edge_plasticity.current_weight.len() != num_csr
            || graph.edge_plasticity.strengthen_count.len() != num_csr
            || graph.edge_plasticity.weaken_count.len() != num_csr
            || graph.edge_plasticity.ltp_applied.len() != num_csr
            || graph.edge_plasticity.ltd_applied.len() != num_csr
            || graph.edge_plasticity.last_used_query.len() != num_csr
            || graph.csr.weights.len() != num_csr
            || graph.csr.targets.len() != num_csr
            || graph.csr.relations.len() != num_csr
            || graph.csr.directions.len() != num_csr
            || graph.csr.inhibitory.len() != num_csr
        {
            return Err(M1ndError::CorruptState {
                reason: "cannot export a partial CSR/plasticity ownership set".into(),
            });
        }

        // Build reverse map: NodeId -> external_id string
        let mut node_ext_id = vec![String::new(); n];
        for (&interned, &node_id) in &graph.id_to_node {
            if let Some(s) = graph.strings.try_resolve(interned) {
                if node_id.as_usize() < n {
                    node_ext_id[node_id.as_usize()] = s.to_string();
                }
            }
        }

        // Build edge_idx -> source NodeId from CSR offsets
        let mut edge_source = vec![0u32; num_csr];
        #[allow(clippy::needless_range_loop)]
        for i in 0..n {
            let lo = graph.csr.offsets[i] as usize;
            let hi = graph.csr.offsets[i + 1] as usize;
            for j in lo..hi {
                edge_source[j] = i as u32;
            }
        }

        let cap = num_csr;
        let mut states = Vec::with_capacity(cap);

        #[allow(clippy::needless_range_loop)]
        for j in 0..cap {
            let original = graph.edge_plasticity.original_weight[j].get();
            let mut current = graph.edge_plasticity.current_weight[j].get();

            // FM-PL-001 NaN firewall
            if !current.is_finite() {
                current = original;
            }

            // Real labels from CSR topology
            let src_idx = edge_source[j] as usize;
            let tgt_idx = graph.csr.targets[j].as_usize();
            let source_label = if src_idx < n {
                node_ext_id[src_idx].clone()
            } else {
                format!("node_{}", src_idx)
            };
            let target_label = if tgt_idx < n {
                node_ext_id[tgt_idx].clone()
            } else {
                format!("node_{}", tgt_idx)
            };
            let relation = graph
                .strings
                .try_resolve(graph.csr.relations[j])
                .unwrap_or("edge")
                .to_string();

            states.push(SynapticState {
                source_label,
                target_label,
                relation,
                direction: Some(graph.csr.directions[j] as u8),
                inhibitory: Some(graph.csr.inhibitory[j]),
                original_weight: original,
                current_weight: current,
                strengthen_count: graph.edge_plasticity.strengthen_count[j],
                weaken_count: graph.edge_plasticity.weaken_count[j],
                ltp_applied: graph.edge_plasticity.ltp_applied[j],
                ltd_applied: graph.edge_plasticity.ltd_applied[j],
                last_used_query: graph.edge_plasticity.last_used_query[j],
            });
        }

        Ok(states)
    }

    /// Import synaptic state from persistence.
    /// FM-PL-007 fix: validates JSON schema, wraps in try/catch.
    /// Current sidecars match the complete structural identity
    /// `(source, target, relation, direction, inhibitory)`. Legacy triple-only
    /// rows are migrated only when exactly one live edge owns that triple.
    /// Replaces: plasticity.py PlasticityEngine.import_state()
    pub fn import_state(&mut self, graph: &mut Graph, states: &[SynapticState]) -> M1ndResult<u32> {
        let n = graph.num_nodes() as usize;
        let num_csr = graph.csr.num_edges();
        let num_plasticity = graph.edge_plasticity.original_weight.len();
        if num_plasticity != num_csr
            || graph.edge_plasticity.current_weight.len() != num_csr
            || graph.edge_plasticity.strengthen_count.len() != num_csr
            || graph.edge_plasticity.weaken_count.len() != num_csr
            || graph.edge_plasticity.ltp_applied.len() != num_csr
            || graph.edge_plasticity.ltd_applied.len() != num_csr
            || graph.edge_plasticity.last_used_query.len() != num_csr
            || graph.csr.weights.len() != num_csr
        {
            return Err(M1ndError::CorruptState {
                reason: "CSR and edge-plasticity arrays have different lengths".into(),
            });
        }

        // Build reverse map: NodeId -> external_id
        let mut node_ext_id = vec![String::new(); n];
        for (&interned, &node_id) in &graph.id_to_node {
            if let Some(s) = graph.strings.try_resolve(interned) {
                if node_id.as_usize() < n {
                    node_ext_id[node_id.as_usize()] = s.to_string();
                }
            }
        }

        // Build edge_idx -> source from CSR offsets
        let mut edge_source = vec![0u32; num_csr];
        #[allow(clippy::needless_range_loop)]
        for i in 0..n {
            let lo = graph.csr.offsets[i] as usize;
            let hi = graph.csr.offsets[i + 1] as usize;
            for j in lo..hi {
                edge_source[j] = i as u32;
            }
        }

        // Build both legacy and complete identity indexes. Values stay vectors:
        // silently taking the last parallel edge would corrupt another synapse.
        use std::collections::{HashMap, HashSet};
        type Triple = (String, String, String);
        type FullKey = (String, String, String, u8, bool);
        let cap = num_csr;
        let mut triple_to_edges: HashMap<Triple, Vec<usize>> = HashMap::with_capacity(cap);
        let mut full_to_edges: HashMap<FullKey, Vec<usize>> = HashMap::with_capacity(cap);
        #[allow(clippy::needless_range_loop)]
        for j in 0..cap {
            let src_idx = edge_source[j] as usize;
            let tgt_idx = graph.csr.targets[j].as_usize();
            if src_idx < n && tgt_idx < n {
                let rel = graph
                    .strings
                    .try_resolve(graph.csr.relations[j])
                    .unwrap_or("");
                let triple = (
                    node_ext_id[src_idx].clone(),
                    node_ext_id[tgt_idx].clone(),
                    rel.to_string(),
                );
                triple_to_edges.entry(triple.clone()).or_default().push(j);
                full_to_edges
                    .entry((
                        triple.0,
                        triple.1,
                        triple.2,
                        graph.csr.directions[j] as u8,
                        graph.csr.inhibitory[j],
                    ))
                    .or_default()
                    .push(j);
            }
        }

        struct RestorePlan {
            slot: usize,
            original_weight: f32,
            current_weight: f32,
            strengthen_count: u16,
            weaken_count: u16,
            ltp_applied: bool,
            ltd_applied: bool,
            last_used_query: u32,
        }

        // Resolve and validate the entire sidecar before mutating one slot.
        let mut seen_full_keys = HashSet::<FullKey>::new();
        let mut selected_slots = HashSet::<usize>::new();
        let mut plans = Vec::with_capacity(states.len());

        for state in states {
            if !state.original_weight.is_finite() {
                return Err(M1ndError::CorruptState {
                    reason: format!(
                        "non-finite original weight for {} -> {} ({})",
                        state.source_label, state.target_label, state.relation
                    ),
                });
            }
            let current_weight = if state.current_weight.is_finite() {
                state.current_weight
            } else {
                state.original_weight
            };
            let triple = (
                state.source_label.clone(),
                state.target_label.clone(),
                state.relation.clone(),
            );

            let slot = match (state.direction, state.inhibitory) {
                (Some(direction), Some(inhibitory)) => {
                    if direction > EdgeDirection::Bidirectional as u8 {
                        return Err(M1ndError::CorruptState {
                            reason: format!(
                                "unknown synaptic direction {direction} for {} -> {}",
                                state.source_label, state.target_label
                            ),
                        });
                    }
                    let key = (
                        triple.0.clone(),
                        triple.1.clone(),
                        triple.2.clone(),
                        direction,
                        inhibitory,
                    );
                    if !seen_full_keys.insert(key.clone()) {
                        return Err(M1ndError::CorruptState {
                            reason: format!(
                                "duplicate full synaptic key for {} -> {} ({}, direction={direction}, inhibitory={inhibitory})",
                                state.source_label, state.target_label, state.relation
                            ),
                        });
                    }
                    match full_to_edges.get(&key).map(Vec::as_slice) {
                        None | Some([]) => continue,
                        Some([slot]) => *slot,
                        Some(matches) => {
                            return Err(M1ndError::CorruptState {
                                reason: format!(
                                    "full synaptic key for {} -> {} ({}) is ambiguous across {} parallel edges",
                                    state.source_label,
                                    state.target_label,
                                    state.relation,
                                    matches.len()
                                ),
                            });
                        }
                    }
                }
                (None, None) => match triple_to_edges.get(&triple).map(Vec::as_slice) {
                    None | Some([]) => continue,
                    Some([slot]) => *slot,
                    Some(matches) => {
                        return Err(M1ndError::CorruptState {
                            reason: format!(
                                "legacy triple-only synaptic state for {} -> {} ({}) is ambiguous across {} edges",
                                state.source_label,
                                state.target_label,
                                state.relation,
                                matches.len()
                            ),
                        });
                    }
                },
                _ => {
                    return Err(M1ndError::CorruptState {
                        reason: format!(
                            "partial synaptic identity for {} -> {} ({})",
                            state.source_label, state.target_label, state.relation
                        ),
                    });
                }
            };

            if !selected_slots.insert(slot) {
                return Err(M1ndError::CorruptState {
                    reason: format!(
                        "multiple synaptic rows resolve to CSR slot {slot} for {} -> {}",
                        state.source_label, state.target_label
                    ),
                });
            }
            plans.push(RestorePlan {
                slot,
                original_weight: state.original_weight,
                current_weight,
                strengthen_count: state.strengthen_count,
                weaken_count: state.weaken_count,
                ltp_applied: state.ltp_applied,
                ltd_applied: state.ltd_applied,
                last_used_query: state.last_used_query,
            });
        }

        let mut max_last_used_query = self.query_count;
        for plan in &plans {
            // `&mut Graph` excludes concurrent writers. The restore plan is
            // completely validated, so an infallible atomic store avoids a
            // spurious-CAS failure after an earlier slot was already applied.
            graph.csr.weights[plan.slot].store(
                plan.current_weight.to_bits(),
                std::sync::atomic::Ordering::Release,
            );
            graph.edge_plasticity.original_weight[plan.slot] = FiniteF32::new(plan.original_weight);
            graph.edge_plasticity.current_weight[plan.slot] = FiniteF32::new(plan.current_weight);
            graph.edge_plasticity.strengthen_count[plan.slot] = plan.strengthen_count;
            graph.edge_plasticity.weaken_count[plan.slot] = plan.weaken_count;
            graph.edge_plasticity.ltp_applied[plan.slot] = plan.ltp_applied;
            graph.edge_plasticity.ltd_applied[plan.slot] = plan.ltd_applied;
            graph.edge_plasticity.last_used_query[plan.slot] = plan.last_used_query;
            max_last_used_query = max_last_used_query.max(plan.last_used_query);
        }
        self.query_count = max_last_used_query;

        Ok(plans.len() as u32)
    }

    /// Get priming signal from query memory.
    pub fn get_priming(
        &self,
        seeds: &[NodeId],
        boost_strength: FiniteF32,
    ) -> Vec<(NodeId, FiniteF32)> {
        self.memory.get_priming_signal(seeds, boost_strength)
    }

    /// Return the top `n` nodes by accumulated query-access frequency from the
    /// ring-buffer memory.  This is the cheapest global "attention" signal —
    /// no seeds required, O(num_nodes) time with a single pass.
    pub fn top_node_access_frequencies(&self, n: usize) -> Vec<(NodeId, u32)> {
        self.memory.top_node_frequencies(n)
    }
}

#[cfg(test)]
mod codec_tests {
    use super::*;

    fn sample_state() -> SynapticState {
        SynapticState {
            source_label: "source".to_string(),
            target_label: "target".to_string(),
            relation: "calls".to_string(),
            direction: Some(EdgeDirection::Forward as u8),
            inhibitory: Some(false),
            original_weight: 0.5,
            current_weight: 0.8,
            strengthen_count: 2,
            weaken_count: 1,
            ltp_applied: true,
            ltd_applied: false,
            last_used_query: 7,
        }
    }

    #[test]
    fn plasticity_memory_codec_matches_file_format_and_nan_firewall() {
        let mut state = sample_state();
        state.current_weight = f32::NAN;
        let states = vec![state];

        let encoded = encode_plasticity_state_json(&states).expect("encode");
        assert_eq!(
            encoded,
            encode_plasticity_state_json(&states).expect("repeat encode")
        );
        let decoded = decode_plasticity_state_json(&encoded).expect("decode");
        assert_eq!(decoded.len(), 1);
        assert_eq!(decoded[0].current_weight, decoded[0].original_weight);

        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("plasticity_state.json");
        crate::snapshot::save_plasticity_state(&states, &path).expect("file save");
        assert_eq!(std::fs::read(path).expect("saved bytes"), encoded);
    }

    #[test]
    fn plasticity_checkpoint_codec_rejects_legacy_identity_defaults() {
        let legacy = serde_json::to_vec_pretty(&serde_json::json!([{
            "source_label": "source",
            "target_label": "target",
            "relation": "calls",
            "original_weight": 0.5,
            "current_weight": 0.8,
            "strengthen_count": 2,
            "weaken_count": 1,
            "ltp_applied": true,
            "ltd_applied": false
        }]))
        .expect("legacy json");
        assert!(decode_plasticity_state_json(&legacy).is_err());

        let dir = tempfile::tempdir().expect("tempdir");
        let path = dir.path().join("legacy-plasticity.json");
        std::fs::write(&path, &legacy).expect("write legacy fixture");
        let decoded = crate::snapshot::load_plasticity_state(&path)
            .expect("friendly file loader keeps legacy compatibility");
        assert_eq!(decoded[0].direction, None);
        assert_eq!(decoded[0].inhibitory, None);
        assert_eq!(decoded[0].last_used_query, 0);
    }

    #[test]
    fn plasticity_memory_codec_rejects_corruption_and_nonfinite_original() {
        assert!(decode_plasticity_state_json(b"{").is_err());

        let mut nonfinite = sample_state();
        nonfinite.original_weight = f32::INFINITY;
        assert!(encode_plasticity_state_json(&[nonfinite]).is_err());

        let mut partial = serde_json::to_value([sample_state()]).expect("value");
        partial[0]
            .as_object_mut()
            .expect("state object")
            .remove("inhibitory");
        let partial = serde_json::to_vec_pretty(&partial).expect("partial json");
        assert!(decode_plasticity_state_json(&partial).is_err());

        let mut unknown_direction = sample_state();
        unknown_direction.direction = Some(u8::MAX);
        let bytes = serde_json::to_vec_pretty(&[unknown_direction]).expect("json");
        assert!(decode_plasticity_state_json(&bytes).is_err());

        let mut unknown_field = serde_json::to_value([sample_state()]).expect("value");
        unknown_field[0]["future_field"] = serde_json::json!(true);
        let bytes = serde_json::to_vec_pretty(&unknown_field).expect("json");
        assert!(decode_plasticity_state_json(&bytes).is_err());
    }
}

static_assertions::assert_impl_all!(PlasticityEngine: Send, Sync);