Skip to content

Commit

Permalink
Apply suggestions from code review (update descriptions)
Browse files Browse the repository at this point in the history
Co-authored-by: Hugo <[email protected]>
  • Loading branch information
fredroy and hugtalbot committed Dec 27, 2024
1 parent 82e1767 commit 9428354
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SOFA_EVENT_CPP(DataExchangeEvent)

void registerDataExchange(sofa::core::ObjectFactory* factory)
{
factory->registerObjects(core::ObjectRegistrationData("DataExchange")
factory->registerObjects(core::ObjectRegistrationData("Component for data memory sharing in the context of multi-threading applications")
.add< DataExchange< sofa::type::vector<sofa::type::Vec3d> > >(true)
.add< DataExchange< sofa::type::vector<sofa::type::Vec2d> > >()
.add< DataExchange< sofa::type::vector<double> > >()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ namespace multithreading::component::animationloop

void registerAnimationLoopParallelScheduler(sofa::core::ObjectFactory* factory)
{
factory->registerObjects(sofa::core::ObjectRegistrationData("Parallel animation loop, using intel tbb library.")
factory->registerObjects(sofa::core::ObjectRegistrationData("Parallel animation loop, using the Intel tbb library.")
.add< AnimationLoopParallelScheduler >());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const bool isParallelBVHNarrowPhaseImplementationRegistered =

void registerParallelBVHNarrowPhase(sofa::core::ObjectFactory* factory)
{
factory->registerObjects(sofa::core::ObjectRegistrationData("Narrow phase collision detection based on boundary volume hierarchy.")
factory->registerObjects(sofa::core::ObjectRegistrationData("Parallel version of the narrow phase collision detection based on boundary volume hierarchy.")
.add< ParallelBVHNarrowPhase >());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const bool isParallelParallelBruteForceBroadPhaseImplementationRegistered =

void registerParallelBruteForceBroadPhase(sofa::core::ObjectFactory* factory)
{
factory->registerObjects(sofa::core::ObjectRegistrationData("Collision detection using extensive pair-wise tests performed in parallel.")
factory->registerObjects(sofa::core::ObjectRegistrationData("Parallel version of the collision detection using extensive pair-wise tests performed concurrently.")
.add< ParallelBruteForceBroadPhase >());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ ParallelCGLinearSolver< ParallelCompressedRowSparseMatrixMechanical<sofa::type::

void registerParallelCGLinearSolver(sofa::core::ObjectFactory* factory)
{
factory->registerObjects(sofa::core::ObjectRegistrationData("Linear system solver using the conjugate gradient iterative algorithm in parallel.")
factory->registerObjects(sofa::core::ObjectRegistrationData("Parallel version of the linear solver using the conjugate gradient iterative algorithm.")
.add< ParallelCGLinearSolver< ParallelCompressedRowSparseMatrixMechanical<SReal>, sofa::linearalgebra::FullVector<SReal> > >(true)
.add< ParallelCGLinearSolver< ParallelCompressedRowSparseMatrixMechanical<sofa::type::Mat<3,3,SReal>>, sofa::linearalgebra::FullVector<SReal> > >());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const bool isParallelHexahedronFEMForceFieldImplementationRegistered =

void registerParallelHexahedronFEMForceField(sofa::core::ObjectFactory* factory)
{
factory->registerObjects(sofa::core::ObjectRegistrationData("Parallel hexahedral finite elements.")
factory->registerObjects(sofa::core::ObjectRegistrationData("Parallel implementation of a linear elastic material using hexahedral finite elements.")
.add < ParallelHexahedronFEMForceField < Vec3Types > > ());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const bool isParallelTetrahedronFEMForceFieldImplementationRegistered =

void registerParallelTetrahedronFEMForceField(sofa::core::ObjectFactory* factory)
{
factory->registerObjects(sofa::core::ObjectRegistrationData("Parallel tetrahedral finite elements.")
factory->registerObjects(sofa::core::ObjectRegistrationData("Parallel implementation of a linear elastic material using tetrahedral finite elements..")
.add < ParallelTetrahedronFEMForceField < Vec3Types > > ());
}

Expand Down

0 comments on commit 9428354

Please sign in to comment.