ringkernel-accnet 0.4.2

GPU-accelerated accounting network analytics with real-time visualization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Data fabric for synthetic accounting data generation.
//!
//! The fabric creates realistic synthetic financial data for simulation,
//! including company archetypes, chart of accounts templates, and
//! transaction generators with configurable patterns.

mod anomaly_injection;
mod chart_of_accounts;
mod company;
mod pipeline;
mod transaction_gen;

pub use anomaly_injection::*;
pub use chart_of_accounts::*;
pub use company::*;
pub use pipeline::*;
pub use transaction_gen::*;