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.
|
|
|
use petgraph::prelude::*;
|
|
|
|
use crate::node;
|
|
|
|
use thiserror::Error;
|
|
|
|
|
|
|
|
#[derive(Error, Debug)]
|
|
|
|
pub enum NetworkError {
|
|
|
|
#[error("Error during node insertion")]
|
|
|
|
NodeInsertionError(String)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Network {
|
|
|
|
fn add_node(&mut self, n: node::Node) -> Result<petgraph::graph::NodeIndex, NetworkError>;
|
|
|
|
fn add_edge(&mut self, parent: &petgraph::stable_graph::NodeIndex, child: &petgraph::graph::NodeIndex);
|
|
|
|
fn get_node_indices(&self) -> petgraph::stable_graph::NodeIndices<node::Node>;
|
|
|
|
fn get_node_weight(&self, node_idx: &petgraph::stable_graph::NodeIndex) -> &node::Node;
|
|
|
|
}
|