wave-memory

Crates.iowave-memory
lib.rswave-memory
version0.1.0
created_at2025-05-06 01:35:50.674637+00
updated_at2025-05-06 01:35:50.674637+00
descriptionA geometric wave-memory system where waves adapt the form. Inspired by Leonov recursive structures.
homepagehttps://github.com/andysay1/wave-memory
repositoryhttps://github.com/andysay1/wave-memory
max_upload_size
id1661764
size7,605
(andysay1)

documentation

README

wave-memory

Wave-based geometric memory — this crate simulates how waves interact with an adaptive shape that evolves in response to energy. Inspired by recursive chaotic geometry (Leonov-style), the form becomes a primitive learning substrate.

Features

  • Adaptive GeoForm structure
  • Wave propagation (Wave) with memory
  • Self-organizing shape evolution from wave activity
  • Ideal for experimentation in cognition, geometry, and wave computing

Example

use wave_memory::{GeoForm, Wave};

fn main() {
    let mut form = GeoForm::from_leonov(100, 123);
    let mut wave = Wave::new(100, 50);

    for _ in 0..100 {
        wave.step(&form);
        form.adapt(&wave.energy(), 0.1);
    }

    println!("Final shape point: {:.3}", form.data[50]);
}

License

MIT OR Apache-2.0

Commit count: 1

cargo fmt