Skip to content

Commit 7eb672c

Browse files
authored
[examples] Remove data applyPermutation (sofa-framework#487)
1 parent 6378a1a commit 7eb672c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bindings/Modules/tests/SofaLinearSolver/matrix_access.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def simulate_beam(self, linear_solver_template):
1717
root.addObject('RequiredPlugin', name='Sofa.Component.Mass')
1818

1919
root.addObject('EulerImplicitSolver', rayleighStiffness="0.1", rayleighMass="0.1")
20-
linear_solver = root.addObject('SparseLDLSolver', name='linear_solver', applyPermutation="false", template=linear_solver_template)
20+
linear_solver = root.addObject('SparseLDLSolver', name='linear_solver', template=linear_solver_template)
2121

2222
root.addObject('MechanicalObject', name="DoFs")
2323
root.addObject('UniformMass', name="mass", totalMass="320")

bindings/Sofa/tests/Core/ForceField.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def simulate_beam(linear_solver_template):
116116
root.addObject('RequiredPlugin', name='Sofa.Component.Mass')
117117

118118
root.addObject('EulerImplicitSolver', rayleighStiffness="0.1", rayleighMass="0.1")
119-
root.addObject('SparseLDLSolver', applyPermutation="false", template=linear_solver_template)
119+
root.addObject('SparseLDLSolver', template=linear_solver_template)
120120

121121
root.addObject('MechanicalObject', name="DoFs")
122122
root.addObject('UniformMass', name="mass", totalMass="320")

bindings/Sofa/tests/Core/Mass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def simulate_beam(linear_solver_template):
2525
root.addObject('RequiredPlugin', name='Sofa.Component.Topology.Container.Grid')
2626

2727
root.addObject('EulerImplicitSolver', rayleighStiffness="0.1", rayleighMass="0.1")
28-
root.addObject('SparseLDLSolver', applyPermutation="false", template=linear_solver_template)
28+
root.addObject('SparseLDLSolver', template=linear_solver_template)
2929

3030
root.addObject('MechanicalObject', name="DoFs")
3131
root.addObject('MeshMatrixMass', name="mass", totalMass="320")

0 commit comments

Comments
 (0)