pub trait SwarmIntelligence {
// Required methods
fn cast_consensus_vote(&self, proposal_id: [u8; 32]) -> bool;
fn compute_collective_advantage(&self, task_complexity: f64) -> f64;
fn get_sync_precision_ns(&self) -> u128;
fn report_hive_metrics(&self) -> OrganismHiveReport;
}