datasynth-generators 2.2.0

50+ data generators covering GL, P2P, O2C, S2C, HR, manufacturing, audit, tax, treasury, and ESG
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Collusion and conspiracy network modeling.
//!
//! This module models fraud networks with multiple conspirators and coordinated schemes:
//! - Collusion rings with multiple member types
//! - Trust and loyalty dynamics
//! - Coordinated transaction generation
//! - Defection and detection risk modeling
//! - Bulk ring generation from employee/vendor pools

mod generator;
mod network;

pub use generator::CollusionRingGenerator;
pub use network::{
    CollusionRing, CollusionRingConfig, CollusionRingType, Conspirator, ConspiratorRole,
    EntityType, RingBehavior, RingStatus,
};