1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//! # Phago Runtime
//!
//! Colony management, scheduling, and host runtime.
//!
//! The runtime is the "organism" — it manages the lifecycle of agents
//! (cells), runs the tick-based simulation, and maintains the substrate
//! (shared environment).
//!
//! ## Quick Start
//!
//! ```rust
//! use phago_runtime::prelude::*;
//!
//! // Create a colony
//! let mut colony = Colony::new();
//!
//! // Ingest a document
//! colony.ingest_document("title", "content", Position::new(0.0, 0.0));
//!
//! // Spawn a digester
//! colony.spawn(Box::new(Digester::new(Position::new(0.0, 0.0))));
//!
//! // Run the simulation
//! colony.run(50);
//! ```