arco 0.6.0

Automated Research into Computational Ontologies — a platform for discovering the conditions under which computation emerges
Documentation
//! ARCO — Commonly used items for convenient importing.
//!
//! This module re-exports the types and traits that are commonly needed when
//! working with this crate.
//!
//! Most applications can start with:
//!
//! ```rust
//! use arco::prelude::*;
//! ```
//!
//! Prefer explicit imports when you only need a small subset of the API.

pub use crate::{
    cycle::{CycleConfig, run_cycle},
    hypotheses::Hypothesis,
    observation::Observation,
    rules::{NoContext, Rule},
    schedule::Schedule,
    state::State,
    universe::InformationUniverse,
};