From 5b5a7362b1d941f0c6f55fb84bea9b024153affa Mon Sep 17 00:00:00 2001 From: Dominic Kempf <dominic.kempf@iwr.uni-heidelberg.de> Date: Wed, 28 Feb 2018 18:02:50 +0100 Subject: [PATCH] Prefix large theta matrices with Theta as well --- python/dune/perftool/sumfact/tabulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/dune/perftool/sumfact/tabulation.py b/python/dune/perftool/sumfact/tabulation.py index 68277a18..daeabf90 100644 --- a/python/dune/perftool/sumfact/tabulation.py +++ b/python/dune/perftool/sumfact/tabulation.py @@ -146,7 +146,7 @@ class BasisTabulationMatrixArray(BasisTabulationMatrixBase): self.width = width def __str__(self): - return "_".join((t._shortname for t in self.tabs)) + return "Theta{}".format("_".join((t._shortname for t in self.tabs))) @property def quadrature_size(self): -- GitLab