Reproducibility

This commit is contained in:
André R. Brodtkorb 2018-11-08 23:10:35 +01:00
parent 77dc93fd3c
commit 812ebcc9ba
2 changed files with 76 additions and 400848 deletions

File diff suppressed because one or more lines are too long

View File

@ -73,6 +73,9 @@ class BoundaryCondition(object):
or self.west == BoundaryCondition.Type.Neumann): or self.west == BoundaryCondition.Type.Neumann):
raise(NotImplementedError("Neumann boundary condition not supported")) raise(NotImplementedError("Neumann boundary condition not supported"))
def __str__(self):
return '[north={:s}, south={:s}, east={:s}, west={:s}]'.format(str(self.north), str(self.south), str(self.east), str(self.west))
def asCodedInt(self): def asCodedInt(self):
""" """