[FEM] Elmer: fix pipeline update issue
- the existing result pipeline can have several children. They must all be updated.
This commit is contained in:
@@ -77,6 +77,15 @@ PyObject* FemPostPipelinePy::load(PyObject *args)
|
||||
Py_Return;
|
||||
}
|
||||
|
||||
PyObject *FemPostPipelinePy::recomputeChildren(PyObject *args)
|
||||
{
|
||||
if (!PyArg_ParseTuple(args, ""))
|
||||
return nullptr;
|
||||
|
||||
getFemPostPipelinePtr()->recomputeChildren();
|
||||
Py_Return;
|
||||
}
|
||||
|
||||
PyObject* FemPostPipelinePy::getLastPostObject(PyObject *args)
|
||||
{
|
||||
if (!PyArg_ParseTuple(args, ""))
|
||||
|
||||
Reference in New Issue
Block a user