Skip to content

Commit

Permalink
Merge pull request #72 from simpeg/TreeMesh_CellGrad
Browse files Browse the repository at this point in the history
Tree mesh cell grad
  • Loading branch information
lheagy authored Feb 28, 2018
2 parents 51dd456 + f98f01f commit d8b0b28
Show file tree
Hide file tree
Showing 7 changed files with 1,773 additions and 646 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[bumpversion]
current_version = 0.1.15
current_version = 0.1.16
files = setup.py discretize/__init__.py docs/conf.py

2 changes: 1 addition & 1 deletion discretize/MeshIO.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ def writeUBC(mesh, fileName, models=None):
'{:.3f} {:.3f} {:.3f}\n'.format(
smallCell[0], smallCell[1], smallCell[2]
) +
'{:.0f} \n'.format(nrCells)
'{:.0f}'.format(nrCells)
)
np.savetxt(fileName, indArr, fmt='%i', header=head, comments='')

Expand Down
Loading

0 comments on commit d8b0b28

Please sign in to comment.