Skip to content

Commit

Permalink
amend docs
Browse files Browse the repository at this point in the history
  • Loading branch information
galenseilis committed Oct 2, 2024
1 parent 9c28efa commit ad2ac63
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion desru/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,21 @@
//! - **Flexible:** Allowing users to define custom event behaviors.
//! - **Efficient:** Using a priority queue to ensure events are executed in the correct order.
//!
//! ## Design Non-Goals
//! This framework is only for the very most core components for DES, and will not provide
//! implementations of simulation tools.
//!
//!
//! ## Future Directions
//!
//! Planned features include:
//! - **Advanced Scheduling Policies:** Adding support for different event scheduling strategies.
//! - **Performance Optimizations:** Improving efficiency for larger simulations.
//!
//! ## Crate Overview
//! This crate provides all necessary components for event-driven simulations in Rust.
//! This crate provides essential components for event-driven simulations in Rust. Starting
//! with events and a scheduler, and abstractions that provide weak coupling with state, this crate
//! can be used to implement most conceivable discrete event simulations.
use std::collections::{BinaryHeap, HashMap};
use std::cmp::Ordering;
use std::fmt;
Expand Down

0 comments on commit ad2ac63

Please sign in to comment.