File tree Expand file tree Collapse file tree 3 files changed +0
-168
lines changed
Expand file tree Collapse file tree 3 files changed +0
-168
lines changed Original file line number Diff line number Diff 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" ) ]
Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ mod sets;
2828use sets:: set_functions;
2929mod validate;
3030use validate:: validation_functions;
31- mod machine_learning;
32- use machine_learning:: ml_functions;
3331
3432def_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
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments