1
+ #[ allow( unused_imports) ]
2
+ pub use crate :: macros:: {
3
+ julia_macro:: * ,
4
+ matlab_macro:: * ,
5
+ r_macro:: *
6
+ } ;
7
+
8
+ pub use crate :: traits:: {
9
+ math:: { Vector , Normed , InnerProduct , Norm , LinearOp } ,
10
+ fp:: { FPVector , FPMatrix } ,
11
+ mutable:: { MutFP , MutMatrix } ,
12
+ general:: Algorithm ,
13
+ num:: { PowOps , ExpLogOps , TrigOps , Real , Number , NumberVector } ,
14
+ raw:: RawMatrix ,
15
+ } ;
16
+
17
+ #[ allow( unused_imports) ]
18
+ pub use crate :: structure:: {
19
+ matrix:: * ,
20
+ vector:: * ,
21
+ dual:: * ,
22
+ polynomial:: * ,
23
+ hyper_dual:: * ,
24
+ } ;
25
+
26
+ pub use crate :: util:: {
27
+ print:: * ,
28
+ api:: * ,
29
+ low_level:: * ,
30
+ non_macro:: * ,
31
+ useful:: * ,
32
+ wrapper:: * ,
33
+ } ;
34
+
35
+ #[ allow( unused_imports) ]
36
+ pub use crate :: statistics:: {
37
+ rand:: * ,
38
+ dist:: * ,
39
+ ops:: * ,
40
+ stat:: * ,
41
+ } ;
42
+
43
+ #[ allow( unused_imports) ]
44
+ pub use crate :: special:: {
45
+ function:: * ,
46
+ } ;
47
+
48
+ #[ allow( unused_imports) ]
49
+ pub use crate :: numerical:: {
50
+ ode:: * ,
51
+ newton:: * ,
52
+ optimize:: * ,
53
+ spline:: * ,
54
+ utils:: * ,
55
+ interp:: * ,
56
+ eigen:: * ,
57
+ integral:: * ,
58
+ } ;
59
+
60
+ #[ allow( unused_imports) ]
61
+ pub use crate :: ml:: {
62
+ reg:: * ,
63
+ } ;
64
+
65
+ #[ allow( unused_imports) ]
66
+ #[ cfg( feature = "dataframe" ) ]
67
+ pub use crate :: structure:: dataframe:: * ;
68
+
69
+ #[ allow( unused_imports) ]
70
+ #[ cfg( feature = "plot" ) ]
71
+ pub use crate :: util:: plot:: * ;
72
+
73
+ // =============================================================================
74
+ // Enums
75
+ // =============================================================================
76
+ pub use crate :: numerical:: integral:: Integral :: { GaussLegendre , NewtonCotes } ;
77
+ pub use crate :: traits:: num:: Number :: { D , F } ;
78
+ pub use crate :: statistics:: stat:: QType :: { Type1 , Type2 , Type3 , Type4 , Type5 , Type6 , Type7 , Type8 , Type9 } ;
0 commit comments