dsntk_examples/decision_tables/mod.rs
1//! # Examples of decision tables defined as Unicode text
2//!
3//! File naming convention for horizontal decision tables (rules as rows):
4//!
5//! ```text
6//! ┌────────────── table orientation: h - horizontal (rules as rows)
7//! │ ┌──────────── information item name: 0 - absent, 1 - present
8//! │ │┌─────────── output label: 0 - absent, 1 - present
9//! │ ││┌────────── allowed values: 0 - absent, 1 - present
10//! │ │││┌───────── number of input clauses: 0, 1, 2...
11//! │ ││││┌──────── number of output clauses: 1, 2, 3...
12//! │ │││││┌─────── number of annotation clauses: 0, 1, 2...
13//! H_000010
14//! ```
15
16mod crosstab;
17mod horizontal;
18mod vertical;
19
20pub use crosstab::*;
21pub use horizontal::*;
22pub use vertical::*;