Reddit Programming
210 subscribers
1.22K photos
124K links
I will send you newest post from subreddit /r/programming
Download Telegram
Implementing memory-augmented majorization with an OR gate for transitions
https://www.reddit.com/r/programming/comments/1nx2isz/implementing_memoryaugmented_majorization_with_an/

<!-- SC_OFF -->I implemented a system that explores integer partition space (N=20, 627 partitions via majorization lattices) while accumulating memory as 4D echo vectors from transition history. The core mechanism is an OR gate for transitions: λ ≻ᵣ μ ⟺ (λ ≻ μ) ∨ (C(λ,μ) ≥ φ) A transition happens if: classically allowed by majorization OR memory coherence is sufficient (φ=0.6). The implementation includes: - Memory accumulation (echo vectors track transition patterns)
- Temporal projection (synthetic future nodes based on echo drift)
- Parallel future selection (competing transitions scored by resonance)
- Archetypal crystallization (irreversible pattern commitment) Built on the majorization framework from Seitz & Kirwan (2018). The goal is exploring what happens when bounded mathematical structures accumulate memory of their own traversal.
DOI: https://doi.org/10.5281/zenodo.17258220 Run: python n20_complete_continuous.py 10000 Not sure what this is useful for yet, but the code works.
Thoughts welcome. <!-- SC_ON --> submitted by /u/SquashyDogMess (https://www.reddit.com/user/SquashyDogMess)
[link] (https://github.com/Kaidorespy/RCFT-Descent-Engine) [comments] (https://www.reddit.com/r/programming/comments/1nx2isz/implementing_memoryaugmented_majorization_with_an/)
Dissecting ConfigureAwait in C#
https://www.reddit.com/r/programming/comments/1nx8h7p/dissecting_configureawait_in_c/

<!-- SC_OFF -->A nice video about ConfigureAwait in C#. One thing I didn't know is that ConfigureAwait(false) also affects a custom task scheduler, and, for instance, this is the reason why you should never use ConfigureAwait(false) with Orleans, because it'll break their threading model. <!-- SC_ON --> submitted by /u/Emergency-Level4225 (https://www.reddit.com/user/Emergency-Level4225)
[link] (https://youtu.be/RZsLA_R8i9s?si=QuuM26gqtfIoc2_7) [comments] (https://www.reddit.com/r/programming/comments/1nx8h7p/dissecting_configureawait_in_c/)