typo fix in nC (it is mesh.nC)

This commit is contained in:
Lindsey Heagy
2016-05-29 14:21:08 -07:00
parent 9a7225c9f6
commit d9f0241da3
+1 -1
View File
@@ -1164,7 +1164,7 @@ class ParametrizedBlockInLayer(IdentityMap):
def shape(self):
if self.indActive is not None:
return (sum(self.indActive), self.nP)
return (self.nC, self.nP)
return (self.mesh.nC, self.nP)
def _validate_m(self, m):
# TODO: more sanity checks here