Skip to content
Draft
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
758 changes: 745 additions & 13 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions process_mining/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ flate2 = "1.0"
graphviz-rust = { git = "https://github.com/aarkue/graphviz-rust.git" , optional = true}
rusqlite = { version = "0.32.1", features = ["bundled","chrono", "serialize"], optional = true }
polars = {version = "0.43.1", features = ["dtype-slim","timezones","partition_by"], optional = true}
hashbag = "0.1.12"
russcip = { version = "0.4.1", features = ["bundled"] }

[features]

Expand Down
3 changes: 3 additions & 0 deletions process_mining/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ pub mod event_log {

/// Util module with smaller helper functions, structs or enums
pub mod utils;
pub mod oc_petri_net;
pub mod oc_case;
pub mod oc_align;

///
/// Petri nets
Expand Down
Loading