Skip to content

Commit 53675a3

Browse files
committed
remomve s from IntegrationSchemes
1 parent 7733874 commit 53675a3

29 files changed

Lines changed: 31 additions & 31 deletions

bindings/Modules/tests/SofaConstraintSolver/matrix_access.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def simulate_pendulum(self):
1717
"Sofa.Component.Mapping.NonLinear",
1818
"Sofa.Component.Mapping.MappedMatrix",
1919
"Sofa.Component.Mass",
20-
"Sofa.Component.IntegrationSchemes.Backward",
20+
"Sofa.Component.IntegrationScheme.Backward",
2121
"Sofa.Component.Topology.Container.Dynamic"])
2222

2323
root.addObject("FreeMotionAnimationLoop", solveVelocityConstraintFirst=True)

bindings/Modules/tests/SofaLinearSolver/matrix_access.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def simulate_beam(self, linear_solver_template):
99

1010
loop = root.addObject('DefaultAnimationLoop')
1111

12-
root.addObject('RequiredPlugin', pluginName='Sofa.Component.IntegrationSchemes.Backward')
12+
root.addObject('RequiredPlugin', pluginName='Sofa.Component.IntegrationScheme.Backward')
1313
root.addObject('RequiredPlugin', pluginName='Sofa.Component.LinearSolver.Direct')
1414
root.addObject('RequiredPlugin', pluginName='Sofa.Component.Engine.Select')
1515
root.addObject('RequiredPlugin', pluginName='Sofa.Component.Constraint.Projective')

bindings/Sofa/tests/Core/ForceField.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def simulate_beam(linear_solver_template):
112112
root.addObject('RequiredPlugin', pluginName='Sofa.Component.Engine.Select')
113113
root.addObject('RequiredPlugin', pluginName='Sofa.Component.LinearSolver.Direct')
114114
root.addObject('RequiredPlugin', pluginName='Sofa.Component.Mass')
115-
root.addObject('RequiredPlugin', pluginName='Sofa.Component.IntegrationSchemes.Backward')
115+
root.addObject('RequiredPlugin', pluginName='Sofa.Component.IntegrationScheme.Backward')
116116
root.addObject('RequiredPlugin', pluginName='Sofa.Component.SolidMechanics.FEM.Elastic')
117117
root.addObject('RequiredPlugin', pluginName='Sofa.Component.StateContainer')
118118
root.addObject('RequiredPlugin', pluginName='Sofa.Component.Topology.Container.Grid')

bindings/Sofa/tests/Core/Mass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def simulate_beam(linear_solver_template):
1616
root.addObject('DefaultAnimationLoop')
1717

1818
root.addObject('RequiredPlugin', pluginName='Sofa.Component.StateContainer')
19-
root.addObject('RequiredPlugin', pluginName='Sofa.Component.IntegrationSchemes.Backward')
19+
root.addObject('RequiredPlugin', pluginName='Sofa.Component.IntegrationScheme.Backward')
2020
root.addObject('RequiredPlugin', pluginName='Sofa.Component.LinearSolver.Direct')
2121
root.addObject('RequiredPlugin', pluginName='Sofa.Component.Engine.Select')
2222
root.addObject('RequiredPlugin', pluginName='Sofa.Component.Constraint.Projective')

docs/sphinx/source/content/FirstSteps.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ We add properties to the sphere. First, we add a mass, then an object called 'Un
242242

243243
.. code-block:: python
244244
245-
SofaRuntime.importPlugin("Sofa.Component.IntegrationSchemes.Backward")
245+
SofaRuntime.importPlugin("Sofa.Component.IntegrationScheme.Backward")
246246
SofaRuntime.importPlugin("Sofa.Component.LinearSolver.Iterative")
247247
SofaRuntime.importPlugin("Sofa.Component.Mass")
248248
SofaRuntime.importPlugin("Sofa.Component.Constraint.Lagrangian.Correction")
@@ -425,7 +425,7 @@ Here is the entire code of the scene :
425425
confignode.addObject('RequiredPlugin', name="Sofa.Component.LinearSolver.Iterative", printLog=False)
426426
confignode.addObject('RequiredPlugin', name="Sofa.Component.Mapping.NonLinear", printLog=False)
427427
confignode.addObject('RequiredPlugin', name="Sofa.Component.Mass", printLog=False)
428-
confignode.addObject('RequiredPlugin', name="Sofa.Component.IntegrationSchemes.Backward", printLog=False)
428+
confignode.addObject('RequiredPlugin', name="Sofa.Component.IntegrationScheme.Backward", printLog=False)
429429
confignode.addObject('RequiredPlugin', name="Sofa.Component.StateContainer", printLog=False)
430430
confignode.addObject('RequiredPlugin', name="Sofa.Component.Topology.Container.Constant", printLog=False)
431431
confignode.addObject('RequiredPlugin', name="Sofa.Component.Visual", printLog=False)

docs/sphinx/source/content/UsingThePlugin.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ Here is the entire code of the scene :
462462
confignode.addObject('RequiredPlugin', name="Sofa.Component.LinearSolver.Iterative", printLog=False)
463463
confignode.addObject('RequiredPlugin', name="Sofa.Component.Mapping.NonLinear", printLog=False)
464464
confignode.addObject('RequiredPlugin', name="Sofa.Component.Mass", printLog=False)
465-
confignode.addObject('RequiredPlugin', name="Sofa.Component.IntegrationSchemes.Backward", printLog=False)
465+
confignode.addObject('RequiredPlugin', name="Sofa.Component.IntegrationScheme.Backward", printLog=False)
466466
confignode.addObject('RequiredPlugin', name="Sofa.Component.StateContainer", printLog=False)
467467
confignode.addObject('RequiredPlugin', name="Sofa.Component.Topology.Container.Constant", printLog=False)
468468
confignode.addObject('RequiredPlugin', name="Sofa.Component.Visual", printLog=False)

examples/CCDIntersection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def createScene(root_node):
2525
"Sofa.Component.Collision.Geometry", "Sofa.Component.Collision.Response.Contact",
2626
"Sofa.Component.Constraint.Lagrangian.Correction", "Sofa.Component.Constraint.Lagrangian.Solver",
2727
"Sofa.Component.IO.Mesh", "Sofa.Component.LinearSolver.Direct", "Sofa.Component.Mapping.Linear",
28-
"Sofa.Component.Mass", "Sofa.Component.IntegrationSchemes.Backward", "Sofa.Component.SolidMechanics.FEM.Elastic",
28+
"Sofa.Component.Mass", "Sofa.Component.IntegrationScheme.Backward", "Sofa.Component.SolidMechanics.FEM.Elastic",
2929
"Sofa.Component.StateContainer", "Sofa.Component.Topology.Container.Dynamic",
3030
"Sofa.Component.Topology.Container.Grid", "Sofa.Component.Topology.Mapping", "Sofa.Component.Visual",
3131
"Sofa.GL.Component.Rendering3D", "Sofa.Component.Engine.Select", "Sofa.GUI.Component"])

examples/MessageHandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def createScene(root):
5454
'Sofa.Component.Engine.Select',
5555
'Sofa.Component.LinearSolver.Direct',
5656
'Sofa.Component.Mass',
57-
'Sofa.Component.IntegrationSchemes.Backward',
57+
'Sofa.Component.IntegrationScheme.Backward',
5858
'Sofa.Component.SolidMechanics.FEM.Elastic',
5959
'Sofa.Component.StateContainer',
6060
'Sofa.Component.Topology.Container.Grid',

examples/RPYC/ExampleLocalCreateSceneMethod.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def createScene(root):
2222
root.addObject("RequiredPlugin", pluginName='Sofa.Component.LinearSolver.Iterative')
2323
root.addObject("RequiredPlugin", pluginName='Sofa.Component.Mapping.Linear')
2424
root.addObject("RequiredPlugin", pluginName='Sofa.Component.Mass')
25-
root.addObject("RequiredPlugin", pluginName='Sofa.Component.IntegrationSchemes.Backward')
25+
root.addObject("RequiredPlugin", pluginName='Sofa.Component.IntegrationScheme.Backward')
2626
root.addObject("RequiredPlugin", pluginName='Sofa.Component.SolidMechanics.FEM.Elastic')
2727
root.addObject("RequiredPlugin", pluginName='Sofa.Component.StateContainer')
2828
root.addObject("RequiredPlugin", pluginName='Sofa.Component.Topology.Container.Dynamic')

examples/RPYC/ExampleManipulatingTheNodeLocally.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
root.addObject("RequiredPlugin", pluginName='Sofa.Component.LinearSolver.Iterative')
2828
root.addObject("RequiredPlugin", pluginName='Sofa.Component.Mapping.Linear')
2929
root.addObject("RequiredPlugin", pluginName='Sofa.Component.Mass')
30-
root.addObject("RequiredPlugin", pluginName='Sofa.Component.IntegrationSchemes.Backward')
30+
root.addObject("RequiredPlugin", pluginName='Sofa.Component.IntegrationScheme.Backward')
3131
root.addObject("RequiredPlugin", pluginName='Sofa.Component.SolidMechanics.FEM.Elastic')
3232
root.addObject("RequiredPlugin", pluginName='Sofa.Component.StateContainer')
3333
root.addObject("RequiredPlugin", pluginName='Sofa.Component.Topology.Container.Dynamic')

0 commit comments

Comments
 (0)