Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ license = "LGPL-2.1"
name = "aika"
readme = "README.md"
repository = "https://github.com/TheMesocarp/aika"
version = "0.2.0"
version = "0.2.1"


[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion src/actors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ impl<MessageType: Pod + Zeroable + Clone> Context<MessageType> {
}

/// An `Actor` is an independent logical process that belongs to a `Planet` and can schedule events.
pub trait Actor<MessageType: Clone + Pod + Zeroable>: std::fmt::Debug {
pub trait Actor<MessageType: Clone + Pod + Zeroable> {
fn step(
&mut self,
env: &mut Context<MessageType>,
Expand Down
1 change: 0 additions & 1 deletion src/mt/engines/hlocal/cluster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ use crate::{
AikaError,
};

#[derive(Debug)]
/// A `Planet` is a local simulation cluster within a `Substrate` system, owns a partition of global simulation state.
/// It operates conservative with respect to its local actors, but allows rollbacks from causality violations
/// triggered in inter-cluster messaging.
Expand Down
3 changes: 2 additions & 1 deletion src/mt/engines/hlocal/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,8 @@ mod unit_tests {
assert!(substrate_result.is_ok());
assert!(
planet_result.is_ok(),
"Planet run loop failed: {planet_result:?}"
"Planet run loop failed: {:?}",
planet_result.err().unwrap()
);
assert!(bus_result.is_ok())
}
Expand Down
Loading