A new, blazing-fast learning engine for Continuous Time Bayesian Networks. Written in pure Rust. 🦀
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
reCTBN/src/node.rs

17 lines
248 B

3 years ago
use std::collections::BTreeSet;
use crate::params;
3 years ago
pub struct Node {
3 years ago
pub params: Box<dyn params::Params>,
3 years ago
pub label: String
}
3 years ago
impl PartialEq for Node {
fn eq(&self, other: &Node) -> bool{
self.label == other.label
}
}
3 years ago