We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d611219 commit aa00909Copy full SHA for aa00909
1 file changed
src/rsrs/rsrs_factors/commutative_factors.rs
@@ -1301,7 +1301,9 @@ where
1301
&factor_options,
1302
);
1303
1304
- if factor_options.trans_val() {
+ self.arr.mul(&mut target_cols, &Side::Right, factor_options);
1305
+ target_cols
1306
+ /*if factor_options.trans_val() {
1307
let mut aux_target_cols = empty_array();
1308
aux_target_cols
1309
.r_mut()
@@ -1315,7 +1317,7 @@ where
1315
1317
} else {
1316
1318
self.arr.mul(&mut target_cols, &Side::Right, factor_options);
1319
target_cols
- }
1320
+ }*/
1321
}
1322
1323
0 commit comments