@@ -110,53 +110,28 @@ pub use crate::macros::{julia_macro::*, matlab_macro::*, r_macro::*};
110
110
pub use crate :: traits:: {
111
111
fp:: { FPMatrix , FPVector } ,
112
112
general:: Algorithm ,
113
- math:: { InnerProduct , LinearOp , Norm , Normed , Vector , VectorProduct , MatrixProduct } ,
113
+ math:: { InnerProduct , LinearOp , MatrixProduct , Norm , Normed , Vector , VectorProduct } ,
114
114
mutable:: { MutFP , MutMatrix } ,
115
115
num:: { ExpLogOps , Number , NumberVector , PowOps , Real , TrigOps } ,
116
116
pointer:: { MatrixPtr , Oxide , Redox } ,
117
- sugar:: { Scalable , ScalableMut , VecOps } ,
118
117
stable:: StableFn ,
118
+ sugar:: { Scalable , ScalableMut , VecOps } ,
119
119
} ;
120
120
121
121
#[ allow( unused_imports) ]
122
- pub use crate :: structure:: {
123
- dual:: * ,
124
- hyper_dual:: * ,
125
- matrix:: * ,
126
- polynomial:: * ,
127
- vector:: *
128
- } ;
122
+ pub use crate :: structure:: { dual:: * , hyper_dual:: * , matrix:: * , polynomial:: * , vector:: * } ;
129
123
130
- pub use crate :: util:: {
131
- api:: * ,
132
- low_level:: * ,
133
- non_macro:: * ,
134
- print:: * ,
135
- useful:: * ,
136
- wrapper:: *
137
- } ;
124
+ pub use crate :: util:: { api:: * , low_level:: * , non_macro:: * , print:: * , useful:: * , wrapper:: * } ;
138
125
139
126
#[ allow( unused_imports) ]
140
- pub use crate :: statistics:: {
141
- dist:: * ,
142
- ops:: * ,
143
- rand:: * ,
144
- stat:: *
145
- } ;
127
+ pub use crate :: statistics:: { dist:: * , ops:: * , rand:: * , stat:: * } ;
146
128
147
129
#[ allow( unused_imports) ]
148
130
pub use crate :: special:: function:: * ;
149
131
150
132
#[ allow( unused_imports) ]
151
133
pub use crate :: numerical:: {
152
- eigen:: * ,
153
- integral:: * ,
154
- interp:: * ,
155
- ode:: * ,
156
- optimize:: * ,
157
- spline:: * ,
158
- utils:: * ,
159
- root:: * ,
134
+ eigen:: * , integral:: * , interp:: * , ode:: * , optimize:: * , root:: * , spline:: * , utils:: * ,
160
135
} ;
161
136
162
137
#[ allow( unused_imports) ]
@@ -177,6 +152,7 @@ pub use crate::structure::ad::*;
177
152
// Enums
178
153
// =============================================================================
179
154
pub use crate :: numerical:: integral:: Integral :: { GaussLegendre , NewtonCotes } ;
155
+ pub use crate :: numerical:: root:: RootFind :: { Bisection , FalsePosition , Newton , Secant } ;
180
156
pub use crate :: statistics:: stat:: QType :: {
181
157
Type1 , Type2 , Type3 , Type4 , Type5 , Type6 , Type7 , Type8 , Type9 ,
182
158
} ;
@@ -185,4 +161,3 @@ pub use crate::structure::matrix::{
185
161
SolveKind :: { LU , WAZ } ,
186
162
} ;
187
163
pub use crate :: traits:: num:: Number :: { D , F } ;
188
- pub use crate :: numerical:: root:: RootFind :: { Bisection , FalsePosition , Newton , Secant } ;
0 commit comments