swarm-engine-core 0.1.6

Core types and orchestration for SwarmEngine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Context System - スコープ付きコンテキスト管理
//!
//! Manager/Worker が「見えるべき」情報を制御するためのスコープシステム。

pub mod resolver;
pub mod store;
pub mod summary;

pub use resolver::{AdjacentStrategy, AllVisibleStrategy, ContextResolver, NeighborStrategy};
pub use store::{
    ActionCandidate, ActionParam, ContextStore, ContextTarget, ContextView, GlobalContext,
    ManagerContext, ResolvedContext, WorkerContext,
};
pub use summary::{TaskContext, WorkerSummary};