rustpower 0.5.0-rc.3

An experimental ECS world snapshot system built on Bevy, featuring structured archetype storage and manifest-based serialization.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub(crate) mod dsbus_dv;
#[cfg(test)]
pub(crate) mod new_dsdvbus; // kept only for test_jacobian_pattern
pub(crate) mod new_dsdvbus2;
pub(crate) mod pf_old_impl;
pub mod newtonpf;

pub mod ecs;
pub mod solver;
pub(crate) mod sparse;
pub use newtonpf::newton_pf;

#[cfg(test)]
mod test_jacobian_pattern;

#[cfg(all(test, feature = "klu"))]
mod bench_jacobian_fill;