c3_linearization/
lib.rs

1mod algorithm;
2mod errors;
3
4pub use algorithm::merge;
5pub use errors::{Error, Result};
6
7pub struct C3 {
8    reverse: bool,
9    python: bool,
10}
11
12impl Default for C3 {
13    fn default() -> Self {
14        Self { reverse: false, python: false }
15    }
16}