Skip to content

Commit d8b0b28

Browse files
authored
Merge pull request #72 from simpeg/TreeMesh_CellGrad
Tree mesh cell grad
2 parents 51dd456 + f98f01f commit d8b0b28

File tree

7 files changed

+1773
-646
lines changed

7 files changed

+1773
-646
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[bumpversion]
2-
current_version = 0.1.15
2+
current_version = 0.1.16
33
files = setup.py discretize/__init__.py docs/conf.py
44

discretize/MeshIO.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ def writeUBC(mesh, fileName, models=None):
590590
'{:.3f} {:.3f} {:.3f}\n'.format(
591591
smallCell[0], smallCell[1], smallCell[2]
592592
) +
593-
'{:.0f} \n'.format(nrCells)
593+
'{:.0f}'.format(nrCells)
594594
)
595595
np.savetxt(fileName, indArr, fmt='%i', header=head, comments='')
596596

0 commit comments

Comments
 (0)