From 616c97e2f750ecec1bd2be6c04c4932fee1c1054 Mon Sep 17 00:00:00 2001 From: hugtalbot Date: Mon, 24 Mar 2025 16:48:35 +0100 Subject: [PATCH] [examples] Remove data applyPermutation --- bindings/Modules/tests/SofaLinearSolver/matrix_access.py | 2 +- bindings/Sofa/tests/Core/ForceField.py | 2 +- bindings/Sofa/tests/Core/Mass.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/Modules/tests/SofaLinearSolver/matrix_access.py b/bindings/Modules/tests/SofaLinearSolver/matrix_access.py index 09698bd29..5c8c54eeb 100644 --- a/bindings/Modules/tests/SofaLinearSolver/matrix_access.py +++ b/bindings/Modules/tests/SofaLinearSolver/matrix_access.py @@ -17,7 +17,7 @@ def simulate_beam(self, linear_solver_template): root.addObject('RequiredPlugin', name='Sofa.Component.Mass') root.addObject('EulerImplicitSolver', rayleighStiffness="0.1", rayleighMass="0.1") - linear_solver = root.addObject('SparseLDLSolver', name='linear_solver', applyPermutation="false", template=linear_solver_template) + linear_solver = root.addObject('SparseLDLSolver', name='linear_solver', template=linear_solver_template) root.addObject('MechanicalObject', name="DoFs") root.addObject('UniformMass', name="mass", totalMass="320") diff --git a/bindings/Sofa/tests/Core/ForceField.py b/bindings/Sofa/tests/Core/ForceField.py index 7f412cbc8..1ae62b306 100644 --- a/bindings/Sofa/tests/Core/ForceField.py +++ b/bindings/Sofa/tests/Core/ForceField.py @@ -116,7 +116,7 @@ def simulate_beam(linear_solver_template): root.addObject('RequiredPlugin', name='Sofa.Component.Mass') root.addObject('EulerImplicitSolver', rayleighStiffness="0.1", rayleighMass="0.1") - root.addObject('SparseLDLSolver', applyPermutation="false", template=linear_solver_template) + root.addObject('SparseLDLSolver', template=linear_solver_template) root.addObject('MechanicalObject', name="DoFs") root.addObject('UniformMass', name="mass", totalMass="320") diff --git a/bindings/Sofa/tests/Core/Mass.py b/bindings/Sofa/tests/Core/Mass.py index f0f93b3a7..b5ed4cdea 100644 --- a/bindings/Sofa/tests/Core/Mass.py +++ b/bindings/Sofa/tests/Core/Mass.py @@ -25,7 +25,7 @@ def simulate_beam(linear_solver_template): root.addObject('RequiredPlugin', name='Sofa.Component.Topology.Container.Grid') root.addObject('EulerImplicitSolver', rayleighStiffness="0.1", rayleighMass="0.1") - root.addObject('SparseLDLSolver', applyPermutation="false", template=linear_solver_template) + root.addObject('SparseLDLSolver', template=linear_solver_template) root.addObject('MechanicalObject', name="DoFs") root.addObject('MeshMatrixMass', name="mass", totalMass="320")