1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
mod compatibility;
pub mod decision_logic;
pub mod decision_tables;
mod examples;
pub mod input_data;
pub mod item_definition;
pub use compatibility::*;
pub use examples::valid::*;
pub use examples::*;
#[cfg(test)]
mod tests {
#[test]
fn test_calculate_decision_table_variants() {
let decision_table_orientation = ["horizontal", "vertical", "crosstab"];
let information_item_name = ["present", "absent"];
let output_label = ["present", "absent"];
let allowed_values = ["absent", "present"];
let inputs = ["absent", "single", "double", "multiple"];
let outputs = ["single", "double", "multiple"];
let annotations = ["absent", "single", "double", "multiple"];
let total_variants =
decision_table_orientation.len() * information_item_name.len() * output_label.len() * allowed_values.len() * inputs.len() * outputs.len() * annotations.len();
assert_eq!(1152, total_variants);
println!("┌─────────────┬─────────────┬─────────┬─────────┬──────────┬──────────┬─────────────┬─────────┬────────┐",);
println!("│ Preferred │ Information │ Output │ Allowed │ Inputs │ Outputs │ Annotations │ Example │ Status │",);
println!("│ orientation │ item name │ label │ values │ │ │ │ │ │",);
println!("├─────────────┼─────────────┼─────────┼─────────┼──────────┼──────────┼─────────────┼─────────┼────────┤",);
let mut counter = 1;
for v_decision_table_orientation in decision_table_orientation {
for v_information_item_name in information_item_name {
for v_output_label in output_label {
for v_allowed_values in allowed_values {
for v_inputs in inputs {
for v_outputs in outputs {
for v_annotations in annotations {
println!(
"│{v_decision_table_orientation:^13}│{v_information_item_name:^13}│{v_output_label:^9}│{v_allowed_values:^9}│{v_inputs:^10}│{v_outputs:^10}│{v_annotations:^13}│ DT_{counter:04} │ │"
);
counter += 1;
}
}
}
}
}
}
}
println!("└─────────────┴─────────────┴─────────┴─────────┴──────────┴──────────┴─────────────┴─────────┴────────┘",);
}
}