cellular_raza-core 0.5.0

Cellular simulation tool
Documentation
//! This module serves to test for compatibility between types and implementations before running a
//! simulation.
//!
//! The rationale behind this approach is to circumvent terse
//! generic error messages which are hard to read.
//! Eventually, we might opt to also implement custom error messages.

use cellular_raza_concepts::*;

#[allow(unused)]
pub fn domain_agents<D, C, S, Ci>(domain: &D, agents: &Ci)
where
    D: Domain<C, S, Ci>,
    Ci: IntoIterator<Item = C>,
{
}

#[allow(unused)]
pub fn mechanics_interaction<C, Ci, Pos, Vel, For, Inf, Float>(agents: &Ci)
where
    Ci: IntoIterator<Item = C>,
    C: cellular_raza_concepts::Mechanics<Pos, Vel, For, Float>,
    C: cellular_raza_concepts::Interaction<Pos, Vel, For, Inf>,
{
}

#[allow(unused)]
pub fn aux_storage_default<A>(aux_storage: &A)
where
    A: Default,
{
}

#[allow(unused)]
pub fn time_stepper_mechanics<Pos, Vel, For, T, C, Ci, Float>(time_stepper: &T, agents: &Ci)
where
    T: crate::time::TimeStepper<Float>,
    Ci: IntoIterator<Item = C>,
    C: cellular_raza_concepts::Mechanics<Pos, Vel, For, Float>,
{
}

#[allow(unused)]
pub fn mechanics_implemented<Pos, Vel, For, Float, C, Ci>(agents: &Ci)
where
    Ci: IntoIterator<Item = C>,
    C: cellular_raza_concepts::Mechanics<Pos, Vel, For, Float>,
{
}

// TODO solve problem where const D: usize from building blocks for interaction
// can not be determined. For now we simply skip this function.
#[allow(unused)]
pub fn interaction_implemented<Pos, Vel, For, Inf, C, Ci>(agents: &Ci)
where
    Ci: IntoIterator<Item = C>,
    C: cellular_raza_concepts::Interaction<Pos, Vel, For, Inf>,
{
}

#[allow(unused)]
pub fn neighbor_sensing_implemented<Pos, Acc, Inf, C, Ci>(agents: &Ci)
where
    Ci: IntoIterator<Item = C>,
    C: cellular_raza_concepts::NeighborSensing<Pos, Acc, Inf>,
{
}

#[allow(unused)]
pub fn neighbor_sensing_position_interaction_information<Pos, Acc, Inf, C, Ci>(agents: &Ci)
where
    Ci: IntoIterator<Item = C>,
    C: cellular_raza_concepts::NeighborSensing<Pos, Acc, Inf>,
    C: cellular_raza_concepts::Position<Pos>,
    C: cellular_raza_concepts::InteractionInformation<Inf>,
{
}

#[allow(unused)]
pub fn cycle_implemented<Float, C, Ci>(agents: &Ci)
where
    Ci: IntoIterator<Item = C>,
    C: cellular_raza_concepts::Cycle<C, Float>,
{
}

#[allow(unused)]
pub fn reactions_contact_implemented<Ri, Pos, Float, RInf, C, Ci>(agents: &Ci)
where
    Ci: IntoIterator<Item = C>,
    C: cellular_raza_concepts::ReactionsContact<Ri, Pos, Float, RInf>,
    C: cellular_raza_concepts::Intracellular<Ri>,
{
}

#[allow(unused)]
pub fn reactions_implemented<Ri, C, Ci>(agents: &Ci)
where
    Ci: IntoIterator<Item = C>,
    C: cellular_raza_concepts::Reactions<Ri>,
{
}

#[allow(unused)]
pub fn subdomain_reactions_implemented<D, S, C, Ci, Pos, Ri, Re, Float>(domain: &D, agents: &Ci)
where
    D: Domain<C, S, Ci>,
    S: cellular_raza_concepts::SubDomainReactions<Pos, Re, Float>,
    Ci: IntoIterator<Item = C>,
    C: cellular_raza_concepts::ReactionsExtra<Ri, Re>,
{
}