Skip to content
Snippets Groups Projects
Commit 95a4d2d4 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Merge branch 'feature/improve-large-theta-readability' into 'master'

Make it easier to distinguish ThetaLarge matrices

See merge request !105
parents 18222251 85d9460b
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ class LargeAMatrix(ImmutableRecord):
def name(self):
name = "ThetaLarge{}{}_{}_qp{}".format("face{}_".format(self.face) if self.face is not None else "",
"T" if self.transpose else "",
"_".join(tuple("d" if d else "" for d in self.derivative)),
"x".join(tuple("d" if d else "" for d in self.derivative)),
quadrature_points_per_direction(),
)
for i, d in enumerate(self.derivative):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment