dist_agent_lang 1.0.3

A hybrid programming language for decentralized and centralized network integration
1
2
3
4
5
6
7
8
9
10
11
12
pub mod benchmark;
pub mod profiler;
pub mod optimizer;
pub mod memory;
pub mod concurrency;

// Re-export commonly used items
pub use benchmark::{BenchmarkRunner, BenchmarkResult, BenchmarkSuite};
pub use profiler::{Profiler, ProfileEvent};
pub use memory::{MemoryManager, MemoryStats};
pub use concurrency::{AsyncScheduler, AsyncTask};