File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -137,14 +137,14 @@ fn det() {
137
137
}
138
138
}
139
139
for rows in 1 ..5 {
140
- det_impl ( random_regular :: < f64 > ( rows) , 1e-9 ) ;
141
- det_impl ( random_regular :: < f32 > ( rows) , 1e-4 ) ;
142
- det_impl ( random_regular :: < c64 > ( rows) , 1e-9 ) ;
143
- det_impl ( random_regular :: < c32 > ( rows) , 1e-4 ) ;
144
- det_impl ( random_regular :: < f64 > ( rows) . t ( ) . to_owned ( ) , 1e-9 ) ;
145
- det_impl ( random_regular :: < f32 > ( rows) . t ( ) . to_owned ( ) , 1e-4 ) ;
146
- det_impl ( random_regular :: < c64 > ( rows) . t ( ) . to_owned ( ) , 1e-9 ) ;
147
- det_impl ( random_regular :: < c32 > ( rows) . t ( ) . to_owned ( ) , 1e-4 ) ;
140
+ det_impl ( random_regular_using :: < f64 > ( rows) , 1e-9 ) ;
141
+ det_impl ( random_regular_using :: < f32 > ( rows) , 1e-4 ) ;
142
+ det_impl ( random_regular_using :: < c64 > ( rows) , 1e-9 ) ;
143
+ det_impl ( random_regular_using :: < c32 > ( rows) , 1e-4 ) ;
144
+ det_impl ( random_regular_using :: < f64 > ( rows) . t ( ) . to_owned ( ) , 1e-9 ) ;
145
+ det_impl ( random_regular_using :: < f32 > ( rows) . t ( ) . to_owned ( ) , 1e-4 ) ;
146
+ det_impl ( random_regular_using :: < c64 > ( rows) . t ( ) . to_owned ( ) , 1e-9 ) ;
147
+ det_impl ( random_regular_using :: < c32 > ( rows) . t ( ) . to_owned ( ) , 1e-4 ) ;
148
148
}
149
149
}
150
150
You can’t perform that action at this time.
0 commit comments