Skip to content

Commit 72752f2

Browse files
committed
Machine learning train/predict functions removed
1 parent b51d68d commit 72752f2

File tree

3 files changed

+0
-168
lines changed

3 files changed

+0
-168
lines changed

build.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ fn main() {
5757
combine_with_exported_module!(&mut lib, "rhai_sci_sets", set_functions);
5858
combine_with_exported_module!(&mut lib, "rhai_sci_moving", moving_functions);
5959
combine_with_exported_module!(&mut lib, "rhai_sci_validate", validation_functions);
60-
combine_with_exported_module!(&mut lib, "rhai_sci_machine_learing", ml_functions);
6160
engine.register_global_module(rhai::Shared::new(lib));
6261

6362
// Extract metadata
@@ -214,7 +213,6 @@ mod functions {
214213
include!("src/moving.rs");
215214
include!("src/validate.rs");
216215
include!("src/patterns.rs");
217-
include!("src/machine_learning.rs");
218216
}
219217

220218
#[cfg(feature = "metadata")]

src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ mod sets;
2828
use sets::set_functions;
2929
mod validate;
3030
use validate::validation_functions;
31-
mod machine_learning;
32-
use machine_learning::ml_functions;
3331

3432
def_package! {
3533
/// Package for scientific computing
@@ -45,7 +43,6 @@ def_package! {
4543
combine_with_exported_module!(lib, "rhai_sci_sets", set_functions);
4644
combine_with_exported_module!(lib, "rhai_sci_moving", moving_functions);
4745
combine_with_exported_module!(lib, "rhai_sci_validation", validation_functions);
48-
combine_with_exported_module!(lib, "rhai_sci_machine_learing", ml_functions);
4946
}
5047
}
5148

src/machine_learning.rs

Lines changed: 0 additions & 163 deletions
This file was deleted.

0 commit comments

Comments
 (0)