mirror of
https://github.com/NGSolve/netgen.git
synced 2025-04-03 14:24:30 +05:00
test pickling also non-empty mesh
This commit is contained in:
parent
b83d73e919
commit
167df9feb9
@ -87,9 +87,13 @@ def test_pickle_geom2d():
|
||||
|
||||
def test_pickle_mesh():
|
||||
import netgen.csg as csg
|
||||
geo = csg.CSGeometry()
|
||||
geo1 = csg.CSGeometry()
|
||||
geo2 = csg.CSGeometry()
|
||||
brick = csg.OrthoBrick(csg.Pnt(-3,-3,-3), csg.Pnt(3,3,3))
|
||||
mesh = geo.GenerateMesh(maxh=0.2)
|
||||
geo2.Add(brick)
|
||||
|
||||
for geo in [geo1, geo2]:
|
||||
mesh = geo.GenerateMesh(maxh=2)
|
||||
assert geo == mesh.GetGeometry()
|
||||
dump = pickle.dumps([geo,mesh])
|
||||
geo2, mesh2 = pickle.loads(dump)
|
||||
|
Loading…
x
Reference in New Issue
Block a user