From f214a4733788370d77e70b41ed2cb1082d3dfd11 Mon Sep 17 00:00:00 2001 From: Alex Bilger Date: Wed, 12 Nov 2025 14:43:22 +0100 Subject: [PATCH] add missing required plugin in test --- bindings/Sofa/tests/Core/ForceField.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/bindings/Sofa/tests/Core/ForceField.py b/bindings/Sofa/tests/Core/ForceField.py index 7a83fbe1..0eed0068 100644 --- a/bindings/Sofa/tests/Core/ForceField.py +++ b/bindings/Sofa/tests/Core/ForceField.py @@ -108,13 +108,14 @@ def simulate_beam(linear_solver_template): root.addObject('DefaultAnimationLoop') - root.addObject('RequiredPlugin', name='Sofa.Component.Topology.Container.Grid') - root.addObject('RequiredPlugin', name='Sofa.Component.ODESolver.Backward') - root.addObject('RequiredPlugin', name='Sofa.Component.LinearSolver.Direct') - root.addObject('RequiredPlugin', name='Sofa.Component.Engine.Select') root.addObject('RequiredPlugin', name='Sofa.Component.Constraint.Projective') - root.addObject('RequiredPlugin', name='Sofa.Component.SolidMechanics.FEM.Elastic') + root.addObject('RequiredPlugin', name='Sofa.Component.Engine.Select') + root.addObject('RequiredPlugin', name='Sofa.Component.LinearSolver.Direct') root.addObject('RequiredPlugin', name='Sofa.Component.Mass') + root.addObject('RequiredPlugin', name='Sofa.Component.ODESolver.Backward') + root.addObject('RequiredPlugin', name='Sofa.Component.SolidMechanics.FEM.Elastic') + root.addObject('RequiredPlugin', name='Sofa.Component.StateContainer') + root.addObject('RequiredPlugin', name='Sofa.Component.Topology.Container.Grid') root.addObject('EulerImplicitSolver', rayleighStiffness="0.1", rayleighMass="0.1") root.addObject('SparseLDLSolver', template=linear_solver_template)