Skip to content
Snippets Groups Projects

Katropton: Add supports for Gmsh 4

Merged Liegeois Kim requested to merge gmsh_4_mpi into master
1 unresolved thread
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -20,7 +20,7 @@ from katropton.eigenvalues import *
def get_gmsh_version():
tmp = subprocess.check_output(["gmsh", "--version"],
stderr=subprocess.STDOUT)
tmp2 = tmp.split('.')
tmp2 = tmp.decode().split('.')
return int(tmp2[0]), int(tmp2[1]), int(tmp2[2])
Loading