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
pub mod builders;
pub mod combinators;
pub mod condition;
pub mod consideration;
pub mod decision_makers;
pub mod evaluators;
pub mod score_mapping;
pub mod task;
#[cfg(test)]
pub mod tests;
#[cfg(not(feature = "scalar64"))]
pub type Scalar = f32;
#[cfg(feature = "scalar64")]
pub type Scalar = f64;
pub type DefaultKey = String;
pub mod prelude {
pub use crate::{
builders::{behavior_tree::*, lod::*, *},
combinators::{all::*, any::*, count::*, *},
condition::*,
consideration::*,
decision_makers::{
machinery::*, parallelizer::*, planner::*, reasoner::*, selector::*, sequencer::*, *,
},
evaluators::{max::*, min::*, product::*, sum::*, *},
score_mapping::*,
task::*,
DefaultKey, Scalar,
};
}