Skip to content

Commit

Permalink
Fix transpose issue identified by jcapriot
Browse files Browse the repository at this point in the history
  • Loading branch information
mplough-kobold committed Aug 18, 2023
1 parent 4836604 commit d4a033a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pymatsolver/mumps/_init_.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ def T(self):
kwargs = {attr: getattr(self, attr) for attr in properties_with_setters}

newMS = self.__class__(
self.A.T,
self.A,
from_pointer=self.pointer,
**kwargs,
)
return newMS
Expand Down

0 comments on commit d4a033a

Please sign in to comment.