Skip to content

Commit aa00909

Browse files
committed
right
1 parent d611219 commit aa00909

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/rsrs/rsrs_factors/commutative_factors.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,7 +1301,9 @@ where
13011301
&factor_options,
13021302
);
13031303

1304-
if factor_options.trans_val() {
1304+
self.arr.mul(&mut target_cols, &Side::Right, factor_options);
1305+
target_cols
1306+
/*if factor_options.trans_val() {
13051307
let mut aux_target_cols = empty_array();
13061308
aux_target_cols
13071309
.r_mut()
@@ -1315,7 +1317,7 @@ where
13151317
} else {
13161318
self.arr.mul(&mut target_cols, &Side::Right, factor_options);
13171319
target_cols
1318-
}
1320+
}*/
13191321
}
13201322
}
13211323
}

0 commit comments

Comments
 (0)