Package Summary

Tags No category tags.
Version 2.9.0
License BSD-3-Clause
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit2.git
VCS Type git
VCS Version main
Last Updated 2024-03-15
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt interface to OMPL

Additional Links

Maintainers

  • Henning Kayser
  • Tyler Weaver
  • MoveIt Release Team

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

2.9.0 (2024-01-09)

  • Handle unsupported position constraints in OMPL (#2417) * Handle unsupported position constraints in OMPL OMPL constrained planning assumes that all position constraints have three dimensions, meaning that they are represented by a BOX bounding volume. If another shape is used (like a SPHERE from moveit_core/kinematic_constraints/utils.hpp), the constraint adapter implementation will produce a segfault because of the lack of dimensions. This fix prevents this by checking for the required BOX type. * Add warning if more than one position primitive is used ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Invoke OMPL debug print only when debug logging is enabled (#2608)

  • Node logging for the rest of MoveIt (#2599)

  • [Planning Pipeline Refactoring] #1 Simplify Adapter - Planner chain (#2429)

  • Add new clang-tidy style rules (#2177)

  • Do not pass and return simple types by const ref (#2453) Co-authored-by: Nils <nilsmailiseke@gmail.com>

  • Update pre-commit and add to .codespell_words (#2465)

  • Map ompl\'s APPROXIMATE_SOLUTION -> TIMED_OUT / PLANNING_FAILED (#2455) ompl\'s APPROXIMATE_SOLUTION is not suitable for actual execution. It just states that we got closer to the goal... The most prominent reason for an approximate solution is a timeout. Thus, return TIMED_OUT and print the used timeouts for convenience.

  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2

  • Update clang-format-14 with QualifierAlignment (#2362)

    • Set qualifier order in .clang-format
    • Ran pre-commit to update according to new style guide
  • Converts float to double (#2343) * Limiting the scope of variables #874 Limited the scope of variables in moveit_core/collision_detection * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu> * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu> * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu>

    • convert float to double
    • change double to float
    • Feedback fixes
    • Introduced variables removed from previous merge commit
    • Updated GL_Renderer function definitions with double instead of float
    • Changed update() function arguments to float since it is a derived virtual function and needs to be overriden
    • Fixed all override errors in visualization

    * *Fixed override errors in perception*Changed reinterpret_cast to double* from float* - change variable types to fit function definition - Fixed clang-tidy warnings

    * Fixed scope of reusable variables ---------Co-authored-by: Salah Soliman <salahsoliman96@gmail.com> Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2

  • Contributors: Henning Kayser, Igor Medvedev, Marq Rasmussen, Robert Haschke, Sebastian Jahr, Shobuj Paul, Tyler Weaver

2.8.0 (2023-09-10)

  • Fix typo in model_based_planning_context.h (#2243)
  • Warn if optimization objective does not match expected values (#2213)

    • Warn if optimization objective does not match expected values

    * Update moveit_planners/ompl/ompl_interface/src/model_based_planning_context.cpp Co-authored-by: Sebastian Jahr <sebastian.jahr@tuta.io>

    * Format

  • Contributors: Stephanie Eng

2.7.4 (2023-05-18)

  • Fix Constraint Planning Segfault (#2130)

    • Fix Constraint Planning Segfault
    • Reuse planner data
    • apply clang formatting
    • apply clang formatting round 2

    * add FIXME note and verbose output of planning graph size ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Contributors: Marq Rasmussen

2.7.3 (2023-04-24)

  • Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
  • Contributors: Shobuj Paul

2.7.2 (2023-04-18)

  • Update pre-commit (#2094)
  • Contributors: Shobuj Paul

2.7.1 (2023-03-23)

  • Fix include install destination (#2008) Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: Tyler Weaver <maybe@tylerjw.dev>
  • Temporarily disable TestPathConstraints with the Panda robot (#2016) This test has become flaky since it was modified to use the OMPL constrained state space (https://github.com/ros-planning/moveit2/issues/2015).
  • Increase priority for constrained planning state space (#1300)

    • Change priority for the constrained planning state space
    • Fix constrained planning tests

    * Use PRM instead of RRTConnect ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • remove underscore from public member in MotionPlanResponse (#1939)

    • remove underscore from private members
    • fix more uses of the suffix notation
  • Contributors: Abhijeet Dasgupta, AlexWebb, Stephanie Eng

2.7.0 (2023-01-29)

  • converted characters from string format to character format (#1881)
  • Cleanup msg includes: Use C++ instead of C header (#1844)
  • Remove ancient OMPL version directives (#1825)
  • Fix BSD license in package.xml (#1796)
    • fix BSD license in package.xml
    • this must also be spdx compliant
  • Minimize use of [this->]{.title-ref} (#1784) It\'s often unnecessary. MoveIt already avoids this in most cases so this PR better cements that existing pattern.
  • Enable [-Wold-style-cast]{.title-ref} (#1770)
  • Remove [MOVEIT_LIB_NAME]{.title-ref} (#1751) It\'s more readable and searchable if we just spell out the target name.
  • Add braces around blocks. (#999)
  • Use <> for non-local headers (#1734) Unless a header lives in the same or a child directory of the file including it, it\'s recommended to use <> for the #include statement. For more information, see the C++ Core Guidelines item SF.12 https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#sf12-prefer-the-quoted-form-of-include-for-files-relative-to-the-including-file-and-the-angle-bracket-form-everywhere-else
  • Used C++ style cast instead of C style cast (#1628) Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
  • Fix clang-tidy issues (#1706)

    • Blindly apply automatic clang-tidy fixes
    • Exemplarily cleanup a few automatic clang-tidy fixes
    • Clang-tidy fixups
    • Missed const-ref fixups
    • Fix unsupported non-const -> const

    * More fixes Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Contributors: Abhijeet Das Gupta, Chris Thrasher, Christian Henkel, Cory Crean, Henning Kayser, Robert Haschke, Sameer Gupta

2.6.0 (2022-11-10)

  • Fix logic with enforcing constrained planning state space in OMPL (#1589)
  • Convert OMPL status to MoveItErrorCode in the OMPL interface (#1606)
  • Factor of 2 in OMPL orientation constraints, to match kinematic_constraints (#1592)
  • Merge PR #1553: Improve cmake files
  • Use standard exported targets: export_\${PROJECT_NAME} -> \${PROJECT_NAME}Targets
  • Improve CMake usage (#1550)
  • size_t bijection index type (#1544)
  • Fixes for using generate_state_database (#1412)
  • simplify_solution per planning context (#1437)

    • Allowing to dynamically change the parameter simplify_solutions

    * Delete this configuration because it overrides the configuration loaded The parameters simplify_solutions is passed to the context trough the configuration of each planner but this function overrides it and seems to be contradictory to rest of the implementation. simplify_solutions shouldn\'t be considered as the rest of the other parameters, like interpolate or hybridize ? - Remove simplify_solutions_ from OMPL interface and all its setter/getter - Clean-up code without ConfigureContext and unneeded code related to simplify_solution

  • correctly initialize rmw_serialized_message_t

  • automatically declare parameters from overrides

  • Remove __has_include statements (#1481)

  • Merge https://github.com/ros-planning/moveit/commit/a63580edd05b01d9480c333645036e5b2b222da9

  • Remove ConstraintSampler::project() (#3170) * Remove unused ompl_interface::ValidConstrainedSampler Last usage was removed in f2f6097ab7e272568d6ab258a53be3c7ca67cf3b. * Remove ConstraintSampler::project() sample() and project() only differ in whether they perform random sampling of the reference joint pose or not. Both of them are sampling. This was highly confusing, as from project() one wouldn\'t expect sampling.

  • Contributors: Alaa, AndyZe, Antoine Duplex, Henning Kayser, Robert Haschke, Sebastian Jahr, Stephanie Eng, Tyler Weaver, Vatan Aksoy Tezer, abishalini

2.5.3 (2022-07-28)

2.5.2 (2022-07-18)

  • Merge remote-tracking branch \'origin/main\' into feature/msa
  • Removing more boost usage (#1372)
  • Merge remote-tracking branch \'upstream/main\' into feature/msa
  • Removing some boost usage (#1331) Co-authored-by: Vatan Aksoy Tezer <vatan@picknik.ai>
  • Add support for mixed constraints with constrained planner (#1319) Co-authored-by: AndyZe <zelenak@picknik.ai>
  • Remove unnecessary rclcpp.hpp includes (#1333)
  • Print OMPL setup info at the DEBUG level (#1330)
  • Port OMPL orientation constraints to MoveIt2 (#1273) Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: JeroenDM <jeroendemaeyer@live.be>
  • Merge pull request #3106 from v4hn/pr-master-bind-them-all / banish bind()
  • Cleanup OMPL\'s PlanningContextManager\'s protected API
  • banish bind()
  • planning_context_manager: rename protected methods
  • Contributors: AndyZe, David V. Lu, Henry Moore, Jafar, Jeroen De Maeyer, Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.9.0
License BSD-3-Clause
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit2.git
VCS Type git
VCS Version main
Last Updated 2024-03-15
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt interface to OMPL

Additional Links

Maintainers

  • Henning Kayser
  • Tyler Weaver
  • MoveIt Release Team

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

2.9.0 (2024-01-09)

  • Handle unsupported position constraints in OMPL (#2417) * Handle unsupported position constraints in OMPL OMPL constrained planning assumes that all position constraints have three dimensions, meaning that they are represented by a BOX bounding volume. If another shape is used (like a SPHERE from moveit_core/kinematic_constraints/utils.hpp), the constraint adapter implementation will produce a segfault because of the lack of dimensions. This fix prevents this by checking for the required BOX type. * Add warning if more than one position primitive is used ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Invoke OMPL debug print only when debug logging is enabled (#2608)

  • Node logging for the rest of MoveIt (#2599)

  • [Planning Pipeline Refactoring] #1 Simplify Adapter - Planner chain (#2429)

  • Add new clang-tidy style rules (#2177)

  • Do not pass and return simple types by const ref (#2453) Co-authored-by: Nils <nilsmailiseke@gmail.com>

  • Update pre-commit and add to .codespell_words (#2465)

  • Map ompl\'s APPROXIMATE_SOLUTION -> TIMED_OUT / PLANNING_FAILED (#2455) ompl\'s APPROXIMATE_SOLUTION is not suitable for actual execution. It just states that we got closer to the goal... The most prominent reason for an approximate solution is a timeout. Thus, return TIMED_OUT and print the used timeouts for convenience.

  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2

  • Update clang-format-14 with QualifierAlignment (#2362)

    • Set qualifier order in .clang-format
    • Ran pre-commit to update according to new style guide
  • Converts float to double (#2343) * Limiting the scope of variables #874 Limited the scope of variables in moveit_core/collision_detection * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu> * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu> * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu>

    • convert float to double
    • change double to float
    • Feedback fixes
    • Introduced variables removed from previous merge commit
    • Updated GL_Renderer function definitions with double instead of float
    • Changed update() function arguments to float since it is a derived virtual function and needs to be overriden
    • Fixed all override errors in visualization

    * *Fixed override errors in perception*Changed reinterpret_cast to double* from float* - change variable types to fit function definition - Fixed clang-tidy warnings

    * Fixed scope of reusable variables ---------Co-authored-by: Salah Soliman <salahsoliman96@gmail.com> Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2

  • Contributors: Henning Kayser, Igor Medvedev, Marq Rasmussen, Robert Haschke, Sebastian Jahr, Shobuj Paul, Tyler Weaver

2.8.0 (2023-09-10)

  • Fix typo in model_based_planning_context.h (#2243)
  • Warn if optimization objective does not match expected values (#2213)

    • Warn if optimization objective does not match expected values

    * Update moveit_planners/ompl/ompl_interface/src/model_based_planning_context.cpp Co-authored-by: Sebastian Jahr <sebastian.jahr@tuta.io>

    * Format

  • Contributors: Stephanie Eng

2.7.4 (2023-05-18)

  • Fix Constraint Planning Segfault (#2130)

    • Fix Constraint Planning Segfault
    • Reuse planner data
    • apply clang formatting
    • apply clang formatting round 2

    * add FIXME note and verbose output of planning graph size ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Contributors: Marq Rasmussen

2.7.3 (2023-04-24)

  • Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
  • Contributors: Shobuj Paul

2.7.2 (2023-04-18)

  • Update pre-commit (#2094)
  • Contributors: Shobuj Paul

2.7.1 (2023-03-23)

  • Fix include install destination (#2008) Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: Tyler Weaver <maybe@tylerjw.dev>
  • Temporarily disable TestPathConstraints with the Panda robot (#2016) This test has become flaky since it was modified to use the OMPL constrained state space (https://github.com/ros-planning/moveit2/issues/2015).
  • Increase priority for constrained planning state space (#1300)

    • Change priority for the constrained planning state space
    • Fix constrained planning tests

    * Use PRM instead of RRTConnect ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • remove underscore from public member in MotionPlanResponse (#1939)

    • remove underscore from private members
    • fix more uses of the suffix notation
  • Contributors: Abhijeet Dasgupta, AlexWebb, Stephanie Eng

2.7.0 (2023-01-29)

  • converted characters from string format to character format (#1881)
  • Cleanup msg includes: Use C++ instead of C header (#1844)
  • Remove ancient OMPL version directives (#1825)
  • Fix BSD license in package.xml (#1796)
    • fix BSD license in package.xml
    • this must also be spdx compliant
  • Minimize use of [this->]{.title-ref} (#1784) It\'s often unnecessary. MoveIt already avoids this in most cases so this PR better cements that existing pattern.
  • Enable [-Wold-style-cast]{.title-ref} (#1770)
  • Remove [MOVEIT_LIB_NAME]{.title-ref} (#1751) It\'s more readable and searchable if we just spell out the target name.
  • Add braces around blocks. (#999)
  • Use <> for non-local headers (#1734) Unless a header lives in the same or a child directory of the file including it, it\'s recommended to use <> for the #include statement. For more information, see the C++ Core Guidelines item SF.12 https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#sf12-prefer-the-quoted-form-of-include-for-files-relative-to-the-including-file-and-the-angle-bracket-form-everywhere-else
  • Used C++ style cast instead of C style cast (#1628) Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
  • Fix clang-tidy issues (#1706)

    • Blindly apply automatic clang-tidy fixes
    • Exemplarily cleanup a few automatic clang-tidy fixes
    • Clang-tidy fixups
    • Missed const-ref fixups
    • Fix unsupported non-const -> const

    * More fixes Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Contributors: Abhijeet Das Gupta, Chris Thrasher, Christian Henkel, Cory Crean, Henning Kayser, Robert Haschke, Sameer Gupta

2.6.0 (2022-11-10)

  • Fix logic with enforcing constrained planning state space in OMPL (#1589)
  • Convert OMPL status to MoveItErrorCode in the OMPL interface (#1606)
  • Factor of 2 in OMPL orientation constraints, to match kinematic_constraints (#1592)
  • Merge PR #1553: Improve cmake files
  • Use standard exported targets: export_\${PROJECT_NAME} -> \${PROJECT_NAME}Targets
  • Improve CMake usage (#1550)
  • size_t bijection index type (#1544)
  • Fixes for using generate_state_database (#1412)
  • simplify_solution per planning context (#1437)

    • Allowing to dynamically change the parameter simplify_solutions

    * Delete this configuration because it overrides the configuration loaded The parameters simplify_solutions is passed to the context trough the configuration of each planner but this function overrides it and seems to be contradictory to rest of the implementation. simplify_solutions shouldn\'t be considered as the rest of the other parameters, like interpolate or hybridize ? - Remove simplify_solutions_ from OMPL interface and all its setter/getter - Clean-up code without ConfigureContext and unneeded code related to simplify_solution

  • correctly initialize rmw_serialized_message_t

  • automatically declare parameters from overrides

  • Remove __has_include statements (#1481)

  • Merge https://github.com/ros-planning/moveit/commit/a63580edd05b01d9480c333645036e5b2b222da9

  • Remove ConstraintSampler::project() (#3170) * Remove unused ompl_interface::ValidConstrainedSampler Last usage was removed in f2f6097ab7e272568d6ab258a53be3c7ca67cf3b. * Remove ConstraintSampler::project() sample() and project() only differ in whether they perform random sampling of the reference joint pose or not. Both of them are sampling. This was highly confusing, as from project() one wouldn\'t expect sampling.

  • Contributors: Alaa, AndyZe, Antoine Duplex, Henning Kayser, Robert Haschke, Sebastian Jahr, Stephanie Eng, Tyler Weaver, Vatan Aksoy Tezer, abishalini

2.5.3 (2022-07-28)

2.5.2 (2022-07-18)

  • Merge remote-tracking branch \'origin/main\' into feature/msa
  • Removing more boost usage (#1372)
  • Merge remote-tracking branch \'upstream/main\' into feature/msa
  • Removing some boost usage (#1331) Co-authored-by: Vatan Aksoy Tezer <vatan@picknik.ai>
  • Add support for mixed constraints with constrained planner (#1319) Co-authored-by: AndyZe <zelenak@picknik.ai>
  • Remove unnecessary rclcpp.hpp includes (#1333)
  • Print OMPL setup info at the DEBUG level (#1330)
  • Port OMPL orientation constraints to MoveIt2 (#1273) Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: JeroenDM <jeroendemaeyer@live.be>
  • Merge pull request #3106 from v4hn/pr-master-bind-them-all / banish bind()
  • Cleanup OMPL\'s PlanningContextManager\'s protected API
  • banish bind()
  • planning_context_manager: rename protected methods
  • Contributors: AndyZe, David V. Lu, Henry Moore, Jafar, Jeroen De Maeyer, Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.9.0
License BSD-3-Clause
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit2.git
VCS Type git
VCS Version main
Last Updated 2024-03-15
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt interface to OMPL

Additional Links

Maintainers

  • Henning Kayser
  • Tyler Weaver
  • MoveIt Release Team

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

2.9.0 (2024-01-09)

  • Handle unsupported position constraints in OMPL (#2417) * Handle unsupported position constraints in OMPL OMPL constrained planning assumes that all position constraints have three dimensions, meaning that they are represented by a BOX bounding volume. If another shape is used (like a SPHERE from moveit_core/kinematic_constraints/utils.hpp), the constraint adapter implementation will produce a segfault because of the lack of dimensions. This fix prevents this by checking for the required BOX type. * Add warning if more than one position primitive is used ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Invoke OMPL debug print only when debug logging is enabled (#2608)

  • Node logging for the rest of MoveIt (#2599)

  • [Planning Pipeline Refactoring] #1 Simplify Adapter - Planner chain (#2429)

  • Add new clang-tidy style rules (#2177)

  • Do not pass and return simple types by const ref (#2453) Co-authored-by: Nils <nilsmailiseke@gmail.com>

  • Update pre-commit and add to .codespell_words (#2465)

  • Map ompl\'s APPROXIMATE_SOLUTION -> TIMED_OUT / PLANNING_FAILED (#2455) ompl\'s APPROXIMATE_SOLUTION is not suitable for actual execution. It just states that we got closer to the goal... The most prominent reason for an approximate solution is a timeout. Thus, return TIMED_OUT and print the used timeouts for convenience.

  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2

  • Update clang-format-14 with QualifierAlignment (#2362)

    • Set qualifier order in .clang-format
    • Ran pre-commit to update according to new style guide
  • Converts float to double (#2343) * Limiting the scope of variables #874 Limited the scope of variables in moveit_core/collision_detection * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu> * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu> * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu>

    • convert float to double
    • change double to float
    • Feedback fixes
    • Introduced variables removed from previous merge commit
    • Updated GL_Renderer function definitions with double instead of float
    • Changed update() function arguments to float since it is a derived virtual function and needs to be overriden
    • Fixed all override errors in visualization

    * *Fixed override errors in perception*Changed reinterpret_cast to double* from float* - change variable types to fit function definition - Fixed clang-tidy warnings

    * Fixed scope of reusable variables ---------Co-authored-by: Salah Soliman <salahsoliman96@gmail.com> Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2

  • Contributors: Henning Kayser, Igor Medvedev, Marq Rasmussen, Robert Haschke, Sebastian Jahr, Shobuj Paul, Tyler Weaver

2.8.0 (2023-09-10)

  • Fix typo in model_based_planning_context.h (#2243)
  • Warn if optimization objective does not match expected values (#2213)

    • Warn if optimization objective does not match expected values

    * Update moveit_planners/ompl/ompl_interface/src/model_based_planning_context.cpp Co-authored-by: Sebastian Jahr <sebastian.jahr@tuta.io>

    * Format

  • Contributors: Stephanie Eng

2.7.4 (2023-05-18)

  • Fix Constraint Planning Segfault (#2130)

    • Fix Constraint Planning Segfault
    • Reuse planner data
    • apply clang formatting
    • apply clang formatting round 2

    * add FIXME note and verbose output of planning graph size ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Contributors: Marq Rasmussen

2.7.3 (2023-04-24)

  • Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
  • Contributors: Shobuj Paul

2.7.2 (2023-04-18)

  • Update pre-commit (#2094)
  • Contributors: Shobuj Paul

2.7.1 (2023-03-23)

  • Fix include install destination (#2008) Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: Tyler Weaver <maybe@tylerjw.dev>
  • Temporarily disable TestPathConstraints with the Panda robot (#2016) This test has become flaky since it was modified to use the OMPL constrained state space (https://github.com/ros-planning/moveit2/issues/2015).
  • Increase priority for constrained planning state space (#1300)

    • Change priority for the constrained planning state space
    • Fix constrained planning tests

    * Use PRM instead of RRTConnect ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • remove underscore from public member in MotionPlanResponse (#1939)

    • remove underscore from private members
    • fix more uses of the suffix notation
  • Contributors: Abhijeet Dasgupta, AlexWebb, Stephanie Eng

2.7.0 (2023-01-29)

  • converted characters from string format to character format (#1881)
  • Cleanup msg includes: Use C++ instead of C header (#1844)
  • Remove ancient OMPL version directives (#1825)
  • Fix BSD license in package.xml (#1796)
    • fix BSD license in package.xml
    • this must also be spdx compliant
  • Minimize use of [this->]{.title-ref} (#1784) It\'s often unnecessary. MoveIt already avoids this in most cases so this PR better cements that existing pattern.
  • Enable [-Wold-style-cast]{.title-ref} (#1770)
  • Remove [MOVEIT_LIB_NAME]{.title-ref} (#1751) It\'s more readable and searchable if we just spell out the target name.
  • Add braces around blocks. (#999)
  • Use <> for non-local headers (#1734) Unless a header lives in the same or a child directory of the file including it, it\'s recommended to use <> for the #include statement. For more information, see the C++ Core Guidelines item SF.12 https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#sf12-prefer-the-quoted-form-of-include-for-files-relative-to-the-including-file-and-the-angle-bracket-form-everywhere-else
  • Used C++ style cast instead of C style cast (#1628) Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
  • Fix clang-tidy issues (#1706)

    • Blindly apply automatic clang-tidy fixes
    • Exemplarily cleanup a few automatic clang-tidy fixes
    • Clang-tidy fixups
    • Missed const-ref fixups
    • Fix unsupported non-const -> const

    * More fixes Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Contributors: Abhijeet Das Gupta, Chris Thrasher, Christian Henkel, Cory Crean, Henning Kayser, Robert Haschke, Sameer Gupta

2.6.0 (2022-11-10)

  • Fix logic with enforcing constrained planning state space in OMPL (#1589)
  • Convert OMPL status to MoveItErrorCode in the OMPL interface (#1606)
  • Factor of 2 in OMPL orientation constraints, to match kinematic_constraints (#1592)
  • Merge PR #1553: Improve cmake files
  • Use standard exported targets: export_\${PROJECT_NAME} -> \${PROJECT_NAME}Targets
  • Improve CMake usage (#1550)
  • size_t bijection index type (#1544)
  • Fixes for using generate_state_database (#1412)
  • simplify_solution per planning context (#1437)

    • Allowing to dynamically change the parameter simplify_solutions

    * Delete this configuration because it overrides the configuration loaded The parameters simplify_solutions is passed to the context trough the configuration of each planner but this function overrides it and seems to be contradictory to rest of the implementation. simplify_solutions shouldn\'t be considered as the rest of the other parameters, like interpolate or hybridize ? - Remove simplify_solutions_ from OMPL interface and all its setter/getter - Clean-up code without ConfigureContext and unneeded code related to simplify_solution

  • correctly initialize rmw_serialized_message_t

  • automatically declare parameters from overrides

  • Remove __has_include statements (#1481)

  • Merge https://github.com/ros-planning/moveit/commit/a63580edd05b01d9480c333645036e5b2b222da9

  • Remove ConstraintSampler::project() (#3170) * Remove unused ompl_interface::ValidConstrainedSampler Last usage was removed in f2f6097ab7e272568d6ab258a53be3c7ca67cf3b. * Remove ConstraintSampler::project() sample() and project() only differ in whether they perform random sampling of the reference joint pose or not. Both of them are sampling. This was highly confusing, as from project() one wouldn\'t expect sampling.

  • Contributors: Alaa, AndyZe, Antoine Duplex, Henning Kayser, Robert Haschke, Sebastian Jahr, Stephanie Eng, Tyler Weaver, Vatan Aksoy Tezer, abishalini

2.5.3 (2022-07-28)

2.5.2 (2022-07-18)

  • Merge remote-tracking branch \'origin/main\' into feature/msa
  • Removing more boost usage (#1372)
  • Merge remote-tracking branch \'upstream/main\' into feature/msa
  • Removing some boost usage (#1331) Co-authored-by: Vatan Aksoy Tezer <vatan@picknik.ai>
  • Add support for mixed constraints with constrained planner (#1319) Co-authored-by: AndyZe <zelenak@picknik.ai>
  • Remove unnecessary rclcpp.hpp includes (#1333)
  • Print OMPL setup info at the DEBUG level (#1330)
  • Port OMPL orientation constraints to MoveIt2 (#1273) Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: JeroenDM <jeroendemaeyer@live.be>
  • Merge pull request #3106 from v4hn/pr-master-bind-them-all / banish bind()
  • Cleanup OMPL\'s PlanningContextManager\'s protected API
  • banish bind()
  • planning_context_manager: rename protected methods
  • Contributors: AndyZe, David V. Lu, Henry Moore, Jafar, Jeroen De Maeyer, Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 1.1.13
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version master
Last Updated 2024-03-03
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt interface to OMPL

Additional Links

Maintainers

  • Dave Coleman
  • MoveIt Release Team

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

1.1.13 (2023-07-28)

1.1.12 (2023-05-13)

  • Add AITstar, BITstar and ABITstar planners from OMPL >= 1.5 (#3347)
  • Differential drive for planar Joints (#3359)
  • Fix (some) doxygen warnings (#3315)
  • Contributors: Robert Haschke, Scott Chow, alaflaquiere

1.1.11 (2022-12-21)

  • Improve processing of multiple planning attempts: skip remaining planning attempts if solution was found (#3261)
  • Convert OMPL status to MoveItErrorCode in the OMPL interface (#3257)
  • Contributors: AndyZe, Robert Haschke

1.1.10 (2022-09-13)

  • Remove ConstraintSampler::project() (#3170)
  • Replace bind() with lambdas (#3106)
  • Cleanup OMPL\'s PlanningContextManager\'s protected API
  • planning_context_manager: rename protected methods
  • Contributors: Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

  • launch/generate_state_database.launch
      • use_current_scene [default: false]
      • planning_group
      • constraints_file — the path to a constraints yaml file (see generate_state_database for details)

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange

No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.9.0
License BSD-3-Clause
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit2.git
VCS Type git
VCS Version main
Last Updated 2024-03-15
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt interface to OMPL

Additional Links

Maintainers

  • Henning Kayser
  • Tyler Weaver
  • MoveIt Release Team

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

2.9.0 (2024-01-09)

  • Handle unsupported position constraints in OMPL (#2417) * Handle unsupported position constraints in OMPL OMPL constrained planning assumes that all position constraints have three dimensions, meaning that they are represented by a BOX bounding volume. If another shape is used (like a SPHERE from moveit_core/kinematic_constraints/utils.hpp), the constraint adapter implementation will produce a segfault because of the lack of dimensions. This fix prevents this by checking for the required BOX type. * Add warning if more than one position primitive is used ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Invoke OMPL debug print only when debug logging is enabled (#2608)

  • Node logging for the rest of MoveIt (#2599)

  • [Planning Pipeline Refactoring] #1 Simplify Adapter - Planner chain (#2429)

  • Add new clang-tidy style rules (#2177)

  • Do not pass and return simple types by const ref (#2453) Co-authored-by: Nils <nilsmailiseke@gmail.com>

  • Update pre-commit and add to .codespell_words (#2465)

  • Map ompl\'s APPROXIMATE_SOLUTION -> TIMED_OUT / PLANNING_FAILED (#2455) ompl\'s APPROXIMATE_SOLUTION is not suitable for actual execution. It just states that we got closer to the goal... The most prominent reason for an approximate solution is a timeout. Thus, return TIMED_OUT and print the used timeouts for convenience.

  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2

  • Update clang-format-14 with QualifierAlignment (#2362)

    • Set qualifier order in .clang-format
    • Ran pre-commit to update according to new style guide
  • Converts float to double (#2343) * Limiting the scope of variables #874 Limited the scope of variables in moveit_core/collision_detection * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu> * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu> * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu>

    • convert float to double
    • change double to float
    • Feedback fixes
    • Introduced variables removed from previous merge commit
    • Updated GL_Renderer function definitions with double instead of float
    • Changed update() function arguments to float since it is a derived virtual function and needs to be overriden
    • Fixed all override errors in visualization

    * *Fixed override errors in perception*Changed reinterpret_cast to double* from float* - change variable types to fit function definition - Fixed clang-tidy warnings

    * Fixed scope of reusable variables ---------Co-authored-by: Salah Soliman <salahsoliman96@gmail.com> Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2

  • Contributors: Henning Kayser, Igor Medvedev, Marq Rasmussen, Robert Haschke, Sebastian Jahr, Shobuj Paul, Tyler Weaver

2.8.0 (2023-09-10)

  • Fix typo in model_based_planning_context.h (#2243)
  • Warn if optimization objective does not match expected values (#2213)

    • Warn if optimization objective does not match expected values

    * Update moveit_planners/ompl/ompl_interface/src/model_based_planning_context.cpp Co-authored-by: Sebastian Jahr <sebastian.jahr@tuta.io>

    * Format

  • Contributors: Stephanie Eng

2.7.4 (2023-05-18)

  • Fix Constraint Planning Segfault (#2130)

    • Fix Constraint Planning Segfault
    • Reuse planner data
    • apply clang formatting
    • apply clang formatting round 2

    * add FIXME note and verbose output of planning graph size ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Contributors: Marq Rasmussen

2.7.3 (2023-04-24)

  • Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
  • Contributors: Shobuj Paul

2.7.2 (2023-04-18)

  • Update pre-commit (#2094)
  • Contributors: Shobuj Paul

2.7.1 (2023-03-23)

  • Fix include install destination (#2008) Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: Tyler Weaver <maybe@tylerjw.dev>
  • Temporarily disable TestPathConstraints with the Panda robot (#2016) This test has become flaky since it was modified to use the OMPL constrained state space (https://github.com/ros-planning/moveit2/issues/2015).
  • Increase priority for constrained planning state space (#1300)

    • Change priority for the constrained planning state space
    • Fix constrained planning tests

    * Use PRM instead of RRTConnect ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • remove underscore from public member in MotionPlanResponse (#1939)

    • remove underscore from private members
    • fix more uses of the suffix notation
  • Contributors: Abhijeet Dasgupta, AlexWebb, Stephanie Eng

2.7.0 (2023-01-29)

  • converted characters from string format to character format (#1881)
  • Cleanup msg includes: Use C++ instead of C header (#1844)
  • Remove ancient OMPL version directives (#1825)
  • Fix BSD license in package.xml (#1796)
    • fix BSD license in package.xml
    • this must also be spdx compliant
  • Minimize use of [this->]{.title-ref} (#1784) It\'s often unnecessary. MoveIt already avoids this in most cases so this PR better cements that existing pattern.
  • Enable [-Wold-style-cast]{.title-ref} (#1770)
  • Remove [MOVEIT_LIB_NAME]{.title-ref} (#1751) It\'s more readable and searchable if we just spell out the target name.
  • Add braces around blocks. (#999)
  • Use <> for non-local headers (#1734) Unless a header lives in the same or a child directory of the file including it, it\'s recommended to use <> for the #include statement. For more information, see the C++ Core Guidelines item SF.12 https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#sf12-prefer-the-quoted-form-of-include-for-files-relative-to-the-including-file-and-the-angle-bracket-form-everywhere-else
  • Used C++ style cast instead of C style cast (#1628) Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
  • Fix clang-tidy issues (#1706)

    • Blindly apply automatic clang-tidy fixes
    • Exemplarily cleanup a few automatic clang-tidy fixes
    • Clang-tidy fixups
    • Missed const-ref fixups
    • Fix unsupported non-const -> const

    * More fixes Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Contributors: Abhijeet Das Gupta, Chris Thrasher, Christian Henkel, Cory Crean, Henning Kayser, Robert Haschke, Sameer Gupta

2.6.0 (2022-11-10)

  • Fix logic with enforcing constrained planning state space in OMPL (#1589)
  • Convert OMPL status to MoveItErrorCode in the OMPL interface (#1606)
  • Factor of 2 in OMPL orientation constraints, to match kinematic_constraints (#1592)
  • Merge PR #1553: Improve cmake files
  • Use standard exported targets: export_\${PROJECT_NAME} -> \${PROJECT_NAME}Targets
  • Improve CMake usage (#1550)
  • size_t bijection index type (#1544)
  • Fixes for using generate_state_database (#1412)
  • simplify_solution per planning context (#1437)

    • Allowing to dynamically change the parameter simplify_solutions

    * Delete this configuration because it overrides the configuration loaded The parameters simplify_solutions is passed to the context trough the configuration of each planner but this function overrides it and seems to be contradictory to rest of the implementation. simplify_solutions shouldn\'t be considered as the rest of the other parameters, like interpolate or hybridize ? - Remove simplify_solutions_ from OMPL interface and all its setter/getter - Clean-up code without ConfigureContext and unneeded code related to simplify_solution

  • correctly initialize rmw_serialized_message_t

  • automatically declare parameters from overrides

  • Remove __has_include statements (#1481)

  • Merge https://github.com/ros-planning/moveit/commit/a63580edd05b01d9480c333645036e5b2b222da9

  • Remove ConstraintSampler::project() (#3170) * Remove unused ompl_interface::ValidConstrainedSampler Last usage was removed in f2f6097ab7e272568d6ab258a53be3c7ca67cf3b. * Remove ConstraintSampler::project() sample() and project() only differ in whether they perform random sampling of the reference joint pose or not. Both of them are sampling. This was highly confusing, as from project() one wouldn\'t expect sampling.

  • Contributors: Alaa, AndyZe, Antoine Duplex, Henning Kayser, Robert Haschke, Sebastian Jahr, Stephanie Eng, Tyler Weaver, Vatan Aksoy Tezer, abishalini

2.5.3 (2022-07-28)

2.5.2 (2022-07-18)

  • Merge remote-tracking branch \'origin/main\' into feature/msa
  • Removing more boost usage (#1372)
  • Merge remote-tracking branch \'upstream/main\' into feature/msa
  • Removing some boost usage (#1331) Co-authored-by: Vatan Aksoy Tezer <vatan@picknik.ai>
  • Add support for mixed constraints with constrained planner (#1319) Co-authored-by: AndyZe <zelenak@picknik.ai>
  • Remove unnecessary rclcpp.hpp includes (#1333)
  • Print OMPL setup info at the DEBUG level (#1330)
  • Port OMPL orientation constraints to MoveIt2 (#1273) Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: JeroenDM <jeroendemaeyer@live.be>
  • Merge pull request #3106 from v4hn/pr-master-bind-them-all / banish bind()
  • Cleanup OMPL\'s PlanningContextManager\'s protected API
  • banish bind()
  • planning_context_manager: rename protected methods
  • Contributors: AndyZe, David V. Lu, Henry Moore, Jafar, Jeroen De Maeyer, Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.9.0
License BSD-3-Clause
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit2.git
VCS Type git
VCS Version main
Last Updated 2024-03-15
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt interface to OMPL

Additional Links

Maintainers

  • Henning Kayser
  • Tyler Weaver
  • MoveIt Release Team

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

2.9.0 (2024-01-09)

  • Handle unsupported position constraints in OMPL (#2417) * Handle unsupported position constraints in OMPL OMPL constrained planning assumes that all position constraints have three dimensions, meaning that they are represented by a BOX bounding volume. If another shape is used (like a SPHERE from moveit_core/kinematic_constraints/utils.hpp), the constraint adapter implementation will produce a segfault because of the lack of dimensions. This fix prevents this by checking for the required BOX type. * Add warning if more than one position primitive is used ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Invoke OMPL debug print only when debug logging is enabled (#2608)

  • Node logging for the rest of MoveIt (#2599)

  • [Planning Pipeline Refactoring] #1 Simplify Adapter - Planner chain (#2429)

  • Add new clang-tidy style rules (#2177)

  • Do not pass and return simple types by const ref (#2453) Co-authored-by: Nils <nilsmailiseke@gmail.com>

  • Update pre-commit and add to .codespell_words (#2465)

  • Map ompl\'s APPROXIMATE_SOLUTION -> TIMED_OUT / PLANNING_FAILED (#2455) ompl\'s APPROXIMATE_SOLUTION is not suitable for actual execution. It just states that we got closer to the goal... The most prominent reason for an approximate solution is a timeout. Thus, return TIMED_OUT and print the used timeouts for convenience.

  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2

  • Update clang-format-14 with QualifierAlignment (#2362)

    • Set qualifier order in .clang-format
    • Ran pre-commit to update according to new style guide
  • Converts float to double (#2343) * Limiting the scope of variables #874 Limited the scope of variables in moveit_core/collision_detection * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu> * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu> * Update moveit_core/collision_detection/src/collision_octomap_filter.cpp Co-authored-by: AndyZe <andyz@utexas.edu>

    • convert float to double
    • change double to float
    • Feedback fixes
    • Introduced variables removed from previous merge commit
    • Updated GL_Renderer function definitions with double instead of float
    • Changed update() function arguments to float since it is a derived virtual function and needs to be overriden
    • Fixed all override errors in visualization

    * *Fixed override errors in perception*Changed reinterpret_cast to double* from float* - change variable types to fit function definition - Fixed clang-tidy warnings

    * Fixed scope of reusable variables ---------Co-authored-by: Salah Soliman <salahsoliman96@gmail.com> Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2

  • Contributors: Henning Kayser, Igor Medvedev, Marq Rasmussen, Robert Haschke, Sebastian Jahr, Shobuj Paul, Tyler Weaver

2.8.0 (2023-09-10)

  • Fix typo in model_based_planning_context.h (#2243)
  • Warn if optimization objective does not match expected values (#2213)

    • Warn if optimization objective does not match expected values

    * Update moveit_planners/ompl/ompl_interface/src/model_based_planning_context.cpp Co-authored-by: Sebastian Jahr <sebastian.jahr@tuta.io>

    * Format

  • Contributors: Stephanie Eng

2.7.4 (2023-05-18)

  • Fix Constraint Planning Segfault (#2130)

    • Fix Constraint Planning Segfault
    • Reuse planner data
    • apply clang formatting
    • apply clang formatting round 2

    * add FIXME note and verbose output of planning graph size ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Contributors: Marq Rasmussen

2.7.3 (2023-04-24)

  • Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
  • Contributors: Shobuj Paul

2.7.2 (2023-04-18)

  • Update pre-commit (#2094)
  • Contributors: Shobuj Paul

2.7.1 (2023-03-23)

  • Fix include install destination (#2008) Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: Tyler Weaver <maybe@tylerjw.dev>
  • Temporarily disable TestPathConstraints with the Panda robot (#2016) This test has become flaky since it was modified to use the OMPL constrained state space (https://github.com/ros-planning/moveit2/issues/2015).
  • Increase priority for constrained planning state space (#1300)

    • Change priority for the constrained planning state space
    • Fix constrained planning tests

    * Use PRM instead of RRTConnect ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • remove underscore from public member in MotionPlanResponse (#1939)

    • remove underscore from private members
    • fix more uses of the suffix notation
  • Contributors: Abhijeet Dasgupta, AlexWebb, Stephanie Eng

2.7.0 (2023-01-29)

  • converted characters from string format to character format (#1881)
  • Cleanup msg includes: Use C++ instead of C header (#1844)
  • Remove ancient OMPL version directives (#1825)
  • Fix BSD license in package.xml (#1796)
    • fix BSD license in package.xml
    • this must also be spdx compliant
  • Minimize use of [this->]{.title-ref} (#1784) It\'s often unnecessary. MoveIt already avoids this in most cases so this PR better cements that existing pattern.
  • Enable [-Wold-style-cast]{.title-ref} (#1770)
  • Remove [MOVEIT_LIB_NAME]{.title-ref} (#1751) It\'s more readable and searchable if we just spell out the target name.
  • Add braces around blocks. (#999)
  • Use <> for non-local headers (#1734) Unless a header lives in the same or a child directory of the file including it, it\'s recommended to use <> for the #include statement. For more information, see the C++ Core Guidelines item SF.12 https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#sf12-prefer-the-quoted-form-of-include-for-files-relative-to-the-including-file-and-the-angle-bracket-form-everywhere-else
  • Used C++ style cast instead of C style cast (#1628) Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
  • Fix clang-tidy issues (#1706)

    • Blindly apply automatic clang-tidy fixes
    • Exemplarily cleanup a few automatic clang-tidy fixes
    • Clang-tidy fixups
    • Missed const-ref fixups
    • Fix unsupported non-const -> const

    * More fixes Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Contributors: Abhijeet Das Gupta, Chris Thrasher, Christian Henkel, Cory Crean, Henning Kayser, Robert Haschke, Sameer Gupta

2.6.0 (2022-11-10)

  • Fix logic with enforcing constrained planning state space in OMPL (#1589)
  • Convert OMPL status to MoveItErrorCode in the OMPL interface (#1606)
  • Factor of 2 in OMPL orientation constraints, to match kinematic_constraints (#1592)
  • Merge PR #1553: Improve cmake files
  • Use standard exported targets: export_\${PROJECT_NAME} -> \${PROJECT_NAME}Targets
  • Improve CMake usage (#1550)
  • size_t bijection index type (#1544)
  • Fixes for using generate_state_database (#1412)
  • simplify_solution per planning context (#1437)

    • Allowing to dynamically change the parameter simplify_solutions

    * Delete this configuration because it overrides the configuration loaded The parameters simplify_solutions is passed to the context trough the configuration of each planner but this function overrides it and seems to be contradictory to rest of the implementation. simplify_solutions shouldn\'t be considered as the rest of the other parameters, like interpolate or hybridize ? - Remove simplify_solutions_ from OMPL interface and all its setter/getter - Clean-up code without ConfigureContext and unneeded code related to simplify_solution

  • correctly initialize rmw_serialized_message_t

  • automatically declare parameters from overrides

  • Remove __has_include statements (#1481)

  • Merge https://github.com/ros-planning/moveit/commit/a63580edd05b01d9480c333645036e5b2b222da9

  • Remove ConstraintSampler::project() (#3170) * Remove unused ompl_interface::ValidConstrainedSampler Last usage was removed in f2f6097ab7e272568d6ab258a53be3c7ca67cf3b. * Remove ConstraintSampler::project() sample() and project() only differ in whether they perform random sampling of the reference joint pose or not. Both of them are sampling. This was highly confusing, as from project() one wouldn\'t expect sampling.

  • Contributors: Alaa, AndyZe, Antoine Duplex, Henning Kayser, Robert Haschke, Sebastian Jahr, Stephanie Eng, Tyler Weaver, Vatan Aksoy Tezer, abishalini

2.5.3 (2022-07-28)

2.5.2 (2022-07-18)

  • Merge remote-tracking branch \'origin/main\' into feature/msa
  • Removing more boost usage (#1372)
  • Merge remote-tracking branch \'upstream/main\' into feature/msa
  • Removing some boost usage (#1331) Co-authored-by: Vatan Aksoy Tezer <vatan@picknik.ai>
  • Add support for mixed constraints with constrained planner (#1319) Co-authored-by: AndyZe <zelenak@picknik.ai>
  • Remove unnecessary rclcpp.hpp includes (#1333)
  • Print OMPL setup info at the DEBUG level (#1330)
  • Port OMPL orientation constraints to MoveIt2 (#1273) Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: JeroenDM <jeroendemaeyer@live.be>
  • Merge pull request #3106 from v4hn/pr-master-bind-them-all / banish bind()
  • Cleanup OMPL\'s PlanningContextManager\'s protected API
  • banish bind()
  • planning_context_manager: rename protected methods
  • Contributors: AndyZe, David V. Lu, Henry Moore, Jafar, Jeroen De Maeyer, Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.9.18
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version kinetic-devel
Last Updated 2020-10-12
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt! interface to OMPL

Additional Links

Maintainers

  • Dave Coleman
  • MoveIt! Release Team

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

0.9.18 (2020-01-24)

0.9.17 (2019-07-09)

0.9.16 (2019-06-29)

  • [feature] Helper function to construct constraints from ROS params (#1253)
  • [maintanance] Resolve catkin lint issues (#1137)
  • [maintanance] Improve clang format (#1214)
  • Contributors: Ludovic Delval, Robert Haschke, v4hn

0.9.15 (2018-10-29)

  • [code] cleanup, improvements (#1099)
  • Contributors: Simon Schmeisser

0.9.14 (2018-10-24)

0.9.13 (2018-10-24)

  • [capability] adaptions for OMPL 1.4 (#903)
  • Contributors: Dave Coleman, Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.8.7
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version jade-devel
Last Updated 2017-07-23
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt interface to OMPL

Additional Links

Maintainers

  • Ioan Sucan

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

0.8.7 (2017-04-03)

  • [fix] gcc6 build error (#471, #458)
  • [fix] Always update initial robot state to prevent dirty robot state error. #448
  • Contributors: Dave Coleman, Henning Kayser

0.8.6 (2017-03-08)

0.8.4 (2017-02-06)

  • [maintenance] Replace last easy explicit shared_ptrs with MOVEIT_CLASS_FORWARD.
  • [test] fetch moveit_resources path at compile time
  • Contributors: Dave Coleman, Isaac I.Y. Saito, Maarten de Vries, Robert Haschke

0.8.3 (2016-08-19)

0.7.0 (2016-01-30)

  • Removed trailing whitespace from entire repository
  • Fixed include directory order to make ros package shadowing work.
  • fixing internal storing of config settings
  • Make sure an overlayed OMPL is used instead of the ROS one.
  • fix simplifySolutions(bool) setter The method simplifySolutions(bool) always set the simplify_solutions member to true and the input variable \"flag\" was ignored. The method is fixed by setting the simplify_solutions member to the value of the input variable \"flag\".
  • changed location of getDefaultPlanner
  • Contributors: Bastian Gaspers, Christian Dornhege, Dave Coleman, Dave Hershberger, Sachin Chitta

0.6.7 (2014-10-28)

  • Changed OMPL SimpleSetup member variable to shared pointer, passed MotionPlanningRequest to child function
  • Simplified number of solve() entry points in moveit_planners_ompl
  • Fixed uninitialized ptc pointer causing a crash.
  • renamed newGoal to new_goal for keeping with formatting
  • setting GroupStateValidityCallbackFn member for constraint_sampler member and implementing callbacks for state validity checking
  • added functions to check validit of state, and also to act as callback for constraint sampler
  • Added copy function from MoveIt! robot_state joint values to ompl state
  • fix for demo constraints database linking error
  • Namespaced less useful debug output to allow to be easily silenced using ros console
  • Contributors: Dave Coleman, Dave Hershberger, Sachin Chitta, arjungm

0.6.6 (2014-07-06)

  • indigo version of moveit planners
  • fix compile error on Indigo
  • Fix for getMeasure() virtual function OMPL change
  • Move OMPL paths before catkin to avoid compilation against ROS OMPL package when specifying a different OMPL installation
  • Fixed bug which limited the number of plans considered to the number of threads.
  • Contributors: Alexander Stumpf, Chris Lewis, Dave Coleman, Ryan Luna, Sachin Chitta

0.5.5 (2014-03-22)

  • update build system for ROS indigo
  • Removed duplicate call to setPlanningScene(), added various comments
  • Contributors: Dave Coleman, Ioan Sucan

0.5.4 (2014-02-06)

  • fix segfault when multiple goals are passed to move_group

0.5.3 (2013-10-11)

  • update to new API

0.5.2 (2013-09-23)

  • porting to new robot state

0.5.1 (2013-08-13)

  • make headers and author definitions aligned the same way; white space fixes
  • namespace change for profiler

0.5.0 (2013-07-15)

0.4.2 (2013-07-12)

  • white space fixes (tabs are now spaces)
  • port ompl plugin to new base class for planning_interface (using planning contexts)

0.4.1 (2013-07-04)

  • use new location of RRTstar, add PRMstar
  • Added new cost function that takes into account robot joint movements
  • Added ability for parameter sweeping by allowing parameters to be changed in planning contexts
  • Added ability to alter configs in a cache

0.4.0 (2013-05-27)

  • propagating changes from moveit_core

0.3.11 (2013-05-02)

  • remove some debug output and add some fixes
  • some fixes for planning with constraint approximations
  • more refactoring; what used to work (including using constraint approximations) works fine. explicitly storing motions is not yet done
  • refactor constraints storage stuff
  • display random motions in a slightly more robust way
  • remove follow constraints API
  • combine ompl_interface and ompl_interface_ros
  • don\'t print status
  • remove option for ordering constraint approximations (and fix #12)
  • add test for jumping configs
  • use project() instead of sample() for producing goals
  • minor fixes and add demo database construction code
  • switch to using the profiler in moveit and add one more debug tool

0.3.10 (2013-04-17)

  • Merge branch \'groovy-devel\' of github.com:ros-planning/moveit_planners into groovy-devel
  • remove incorrect dep
  • add dynamic reconfigure options for #2

0.3.9 (2013-04-16 13:39)

  • disable old style benchmarking

0.3.8 (2013-04-16 11:23)

  • fix #8
  • use namespace option in ompl plugin
  • remove unused functions
  • add buildtool depends
  • Fixed state deserialization: now update var transform too
  • collapse OMPL plugin to one package
  • robustness fix
  • Fixed github url name

0.3.7 (2013-03-09)

  • Remove configure from PlanningScene
  • add multi-collision to PlanningScene
  • renaming kinematic_model to robot_model

0.3.6 (2013-02-02)

  • complete renaming process
  • rename KinematicState to RobotState, KinematicTrajectory to RobotTrajectory
  • propagating fixes from moveit_core
  • use new robot_trajectory lib

0.3.5 (2013-01-28)

  • fix reporting of goal collisions
  • add some verbose output for failing goals
  • port to new DisplayTrajectory message
  • propagate API changes from planning_interface
  • minor fix
  • use the project() method to improve constraint following algorithm
  • change default build flags

0.3.4 (2012-12-20 23:59)

  • dynamic_reconfigure workaroung

0.3.3 (2012-12-20 21:51)

  • update dyn reconfig call

0.3.2 (2012-12-20 13:45)

  • fix call to obsolete function

0.3.1 (2012-12-19)

  • using the constraint sampler loading library
  • make sure sampled goals are valid
  • fix buildtool tag

0.3.0 (2012-12-10)

  • add a debug msg
  • re-enable heuristic
  • first working version of follow planner
  • most of the follow alg, but not 100% complete yet
  • pass valid state samplers into the follow algorithm
  • add constrained valid state sampler
  • minor fixes
  • fixes some catkin CMakeLists issues
  • add code to allow execution of follow()
  • port test to groovy
  • placeholder for to-be-added algorithm
  • minor touch-ups; no real functional changes other than a bias for state samplers wrt dimension of the space (when sampling in a ball of dimension D, focus the sampling towards the surface of the ball)
  • minor & incomplete fix

0.2.5 (2012-11-26)

  • update to new message API

0.2.4 (2012-11-23)

  • improve error message
  • stricter error checking
  • update include path

0.2.3 (2012-11-21 22:47)

  • use generalized version of getMaximumExtent()

0.2.2 (2012-11-21 22:41)

  • more fixes to planners
  • removed bad include dir
  • fixed some plugin issues
  • fixed include dirs in ompl ros interface
  • added gitignore for ompl/ros

0.2.1 (2012-11-06)

  • update install location of include/

0.2.0 (2012-11-05)

  • udpate install targets

0.1.2 (2012-11-01)

  • bump version
  • install the plugin lib as well
  • add TRRT to the list of options

0.1.1 (2012-10-29)

  • fixes for build against groovy

0.1.0 (2012-10-28)

  • port to groovy
  • added some groovy build system files
  • more moving around of packages

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
fanuc_cr7ia_moveit_config github-ros-industrial-fanuc
fanuc_cr7ial_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200i_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib3l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5h_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic_moveit_config github-ros-industrial-fanuc
fanuc_m10ia_moveit_config github-ros-industrial-fanuc
fanuc_m16ib20_moveit_config github-ros-industrial-fanuc
fanuc_m20ia10l_moveit_config github-ros-industrial-fanuc
fanuc_m20ia_moveit_config github-ros-industrial-fanuc
fanuc_m20ib25_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2f_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2p_moveit_config github-ros-industrial-fanuc
fanuc_m6ib6s_moveit_config github-ros-industrial-fanuc
fanuc_m6ib_moveit_config github-ros-industrial-fanuc
fanuc_r1000ia80f_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200id7l_moveit_config github-ros-industrial-fanuc_experimental
fanuc_lrmate200id_moveit_config github-ros-industrial-fanuc_experimental
fetch_moveit_config github-fetchrobotics-fetch_ros
pr2eus_moveit github-jsk-ros-pkg-jsk_pr2eus
moveit_planners github-ros-planning-moveit
nao_moveit_config github-ros-naoqi-nao_moveit_config
pepper_moveit_config github-ros-naoqi-pepper_moveit_config
romeo_moveit_config github-ros-aldebaran-romeo_moveit_config
aubo_i5_moveit_config github-auboliuxin-aubo_robot
ompl_visual_tools github-davetcoleman-ompl_visual_tools

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.7.14
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version indigo-devel
Last Updated 2019-06-17
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt interface to OMPL

Additional Links

Maintainers

  • Dave Coleman
  • MoveIt! Release Team

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

0.7.14 (2018-10-20)

0.7.13 (2017-12-25)

0.7.12 (2017-08-06)

  • [moveit_ros] [moveit_planners] Optional forced use of JointModelStateSpaceFactory (#541)

    • Implements optional ompl_planning config parameter \'force_joint_model_state_space\'.

    * Renames parameter to \'enforce_joint_model_state_space\'. Expands workaround comment.

  • Contributors: henhenhen

0.7.11 (2017-06-21)

0.7.10 (2017-06-07)

0.7.9 (2017-04-03)

  • [fix][moveit_planners_ompl] Always update initial robot state to prevent dirty robot state error. #448
  • Contributors: Henning Kayser

0.7.8 (2017-03-08)

  • [fix][moveit_ros_warehouse] gcc6 build error #423
  • Contributors: Dmitry Rozhkov

0.7.7 (2017-02-06)

  • [maintenance] clang-format upgraded to 3.8 (#404)
  • Contributors: Dave Coleman

0.7.6 (2016-12-30)

0.7.5 (2016-12-25)

0.7.4 (2016-12-22)

0.7.3 (2016-12-20)

0.7.0 (2016-01-30)

  • Removed trailing whitespace from entire repository
  • Fixed include directory order to make ros package shadowing work.
  • fixing internal storing of config settings
  • Make sure an overlayed OMPL is used instead of the ROS one.
  • fix simplifySolutions(bool) setter The method simplifySolutions(bool) always set the simplify_solutions member to true and the input variable \"flag\" was ignored. The method is fixed by setting the simplify_solutions member to the value of the input variable \"flag\".
  • changed location of getDefaultPlanner
  • Contributors: Bastian Gaspers, Christian Dornhege, Dave Coleman, Dave Hershberger, Sachin Chitta

0.6.7 (2014-10-28)

  • Changed OMPL SimpleSetup member variable to shared pointer, passed MotionPlanningRequest to child function
  • Simplified number of solve() entry points in moveit_planners_ompl
  • Fixed uninitialized ptc pointer causing a crash.
  • renamed newGoal to new_goal for keeping with formatting
  • setting GroupStateValidityCallbackFn member for constraint_sampler member and implementing callbacks for state validity checking
  • added functions to check validit of state, and also to act as callback for constraint sampler
  • Added copy function from MoveIt! robot_state joint values to ompl state
  • fix for demo constraints database linking error
  • Namespaced less useful debug output to allow to be easily silenced using ros console
  • Contributors: Dave Coleman, Dave Hershberger, Sachin Chitta, arjungm

0.6.6 (2014-07-06)

  • indigo version of moveit planners
  • fix compile error on Indigo
  • Fix for getMeasure() virtual function OMPL change
  • Move OMPL paths before catkin to avoid compilation against ROS OMPL package when specifying a different OMPL installation
  • Fixed bug which limited the number of plans considered to the number of threads.
  • Contributors: Alexander Stumpf, Chris Lewis, Dave Coleman, Ryan Luna, Sachin Chitta

0.5.5 (2014-03-22)

  • update build system for ROS indigo
  • Removed duplicate call to setPlanningScene(), added various comments
  • Contributors: Dave Coleman, Ioan Sucan

0.5.4 (2014-02-06)

  • fix segfault when multiple goals are passed to move_group

0.5.3 (2013-10-11)

  • update to new API

0.5.2 (2013-09-23)

  • porting to new robot state

0.5.1 (2013-08-13)

  • make headers and author definitions aligned the same way; white space fixes
  • namespace change for profiler

0.5.0 (2013-07-15)

0.4.2 (2013-07-12)

  • white space fixes (tabs are now spaces)
  • port ompl plugin to new base class for planning_interface (using planning contexts)

0.4.1 (2013-07-04)

  • use new location of RRTstar, add PRMstar
  • Added new cost function that takes into account robot joint movements
  • Added ability for parameter sweeping by allowing parameters to be changed in planning contexts
  • Added ability to alter configs in a cache

0.4.0 (2013-05-27)

  • propagating changes from moveit_core

0.3.11 (2013-05-02)

  • remove some debug output and add some fixes
  • some fixes for planning with constraint approximations
  • more refactoring; what used to work (including using constraint approximations) works fine. explicitly storing motions is not yet done
  • refactor constraints storage stuff
  • display random motions in a slightly more robust way
  • remove follow constraints API
  • combine ompl_interface and ompl_interface_ros
  • don\'t print status
  • remove option for ordering constraint approximations (and fix #12)
  • add test for jumping configs
  • use project() instead of sample() for producing goals
  • minor fixes and add demo database construction code
  • switch to using the profiler in moveit and add one more debug tool

0.3.10 (2013-04-17)

  • Merge branch \'groovy-devel\' of github.com:ros-planning/moveit_planners into groovy-devel
  • remove incorrect dep
  • add dynamic reconfigure options for #2

0.3.9 (2013-04-16 13:39)

  • disable old style benchmarking

0.3.8 (2013-04-16 11:23)

  • fix #8
  • use namespace option in ompl plugin
  • remove unused functions
  • add buildtool depends
  • Fixed state deserialization: now update var transform too
  • collapse OMPL plugin to one package
  • robustness fix
  • Fixed github url name

0.3.7 (2013-03-09)

  • Remove configure from PlanningScene
  • add multi-collision to PlanningScene
  • renaming kinematic_model to robot_model

0.3.6 (2013-02-02)

  • complete renaming process
  • rename KinematicState to RobotState, KinematicTrajectory to RobotTrajectory
  • propagating fixes from moveit_core
  • use new robot_trajectory lib

0.3.5 (2013-01-28)

  • fix reporting of goal collisions
  • add some verbose output for failing goals
  • port to new DisplayTrajectory message
  • propagate API changes from planning_interface
  • minor fix
  • use the project() method to improve constraint following algorithm
  • change default build flags

0.3.4 (2012-12-20 23:59)

  • dynamic_reconfigure workaroung

0.3.3 (2012-12-20 21:51)

  • update dyn reconfig call

0.3.2 (2012-12-20 13:45)

  • fix call to obsolete function

0.3.1 (2012-12-19)

  • using the constraint sampler loading library
  • make sure sampled goals are valid
  • fix buildtool tag

0.3.0 (2012-12-10)

  • add a debug msg
  • re-enable heuristic
  • first working version of follow planner
  • most of the follow alg, but not 100% complete yet
  • pass valid state samplers into the follow algorithm
  • add constrained valid state sampler
  • minor fixes
  • fixes some catkin CMakeLists issues
  • add code to allow execution of follow()
  • port test to groovy
  • placeholder for to-be-added algorithm
  • minor touch-ups; no real functional changes other than a bias for state samplers wrt dimension of the space (when sampling in a ball of dimension D, focus the sampling towards the surface of the ball)
  • minor & incomplete fix

0.2.5 (2012-11-26)

  • update to new message API

0.2.4 (2012-11-23)

  • improve error message
  • stricter error checking
  • update include path

0.2.3 (2012-11-21 22:47)

  • use generalized version of getMaximumExtent()

0.2.2 (2012-11-21 22:41)

  • more fixes to planners
  • removed bad include dir
  • fixed some plugin issues
  • fixed include dirs in ompl ros interface
  • added gitignore for ompl/ros

0.2.1 (2012-11-06)

  • update install location of include/

0.2.0 (2012-11-05)

  • udpate install targets

0.1.2 (2012-11-01)

  • bump version
  • install the plugin lib as well
  • add TRRT to the list of options

0.1.1 (2012-10-29)

  • fixes for build against groovy

0.1.0 (2012-10-28)

  • port to groovy
  • added some groovy build system files
  • more moving around of packages

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
abb_irb2400_moveit_config github-ros-industrial-abb
abb_irb6640_moveit_config github-ros-industrial-abb
cob_moveit_bringup github-ipa320-cob_manipulation
denso_robot_moveit_config github-DENSORobot-denso_robot_ros
fanuc_cr7ia_moveit_config github-ros-industrial-fanuc
fanuc_cr7ial_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200i_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib3l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5h_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic_moveit_config github-ros-industrial-fanuc
fanuc_m10ia_moveit_config github-ros-industrial-fanuc
fanuc_m16ib20_moveit_config github-ros-industrial-fanuc
fanuc_m20ia10l_moveit_config github-ros-industrial-fanuc
fanuc_m20ia_moveit_config github-ros-industrial-fanuc
fanuc_m20ib25_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2f_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2p_moveit_config github-ros-industrial-fanuc
fanuc_m6ib6s_moveit_config github-ros-industrial-fanuc
fanuc_m6ib_moveit_config github-ros-industrial-fanuc
fanuc_r1000ia80f_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200id7l_moveit_config github-ros-industrial-fanuc_experimental
fanuc_lrmate200id_moveit_config github-ros-industrial-fanuc_experimental
fetch_moveit_config github-fetchrobotics-fetch_ros
husky_ur5_moveit_config github-husky-husky
pr2eus_moveit github-jsk-ros-pkg-jsk_pr2eus
tra1_moveit_config github-tork-a-minas
moveit_planners github-ros-planning-moveit
staubli_rx160_moveit_config github-ros-industrial-staubli
ur10_moveit_config github-ros-industrial-universal_robot
ur3_moveit_config github-ros-industrial-universal_robot
ur5_moveit_config github-ros-industrial-universal_robot
abb_irb120_moveit_config github-ros-industrial-abb_experimental
abb_irb120t_moveit_config github-ros-industrial-abb_experimental
vs060_moveit_config github-start-jsk-denso
motoman_sda10f_moveit_config github-ros-industrial-motoman
motoman_sia20d_moveit_config github-ros-industrial-motoman
motoman_mpl80_moveit_config github-ros-industrial-motoman_experimental
motoman_sia5d_moveit_config github-ros-industrial-motoman_experimental
nao_moveit_config github-ros-naoqi-nao_moveit_config
pepper_moveit_config github-ros-naoqi-pepper_moveit_config
rb1_base_kinova_j2n6a300_moveit_config github-RobotnikAutomation-rb1_base_common
romeo_moveit_config github-ros-aldebaran-romeo_moveit_config
turtlebot_arm_moveit_config github-turtlebot-turtlebot_arm
calvin_moveit_config github-uos-calvin_robot
maxwell_moveit_config github-mikeferguson-maxwell
hrp2w_moveit_config github-start-jsk-rtmros_gazebo
samplerobot_moveit_config github-start-jsk-rtmros_gazebo
staro_moveit_config github-start-jsk-rtmros_gazebo
aubo_i5_moveit_config github-auboliuxin-aubo_robot
carl_moveit github-GT-RAIL-carl_moveit
stomp_test_kr210_moveit_config github-ros-industrial-industrial_moveit
ompl_visual_tools github-davetcoleman-ompl_visual_tools
phantomx_reactor_arm_moveit_config github-RobotnikAutomation-phantomx_reactor_arm
rb1_jaco_3fg_moveit_config github-RobotnikAutomation-rb1_common
rb1_mico_3fg_moveit_config github-RobotnikAutomation-rb1_common
romeo_moveit_actions github-ros-aldebaran-romeo_moveit_actions
schunk_lwa4d_moveit_config github-ipa320-schunk_robots
Multicar_moveit_config github-gus484-ros
widowx_arm_moveit github-RobotnikAutomation-widowx_arm
jaco_moveit_config github-RIVeR-Lab-wpi_jaco
mico_moveit_config github-RIVeR-Lab-wpi_jaco
yumi_moveit_config github-OrebroUniversity-yumi

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.5.6
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit_planners.git
VCS Type git
VCS Version hydro-devel
Last Updated 2015-06-03
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt interface to OMPL

Additional Links

Maintainers

  • Ioan Sucan

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

0.5.6 (2014-07-06)

  • Fix for getMeasure() virtual function OMPL change
  • Move OMPL paths before catkin to avoid compilation against ROS OMPL package when specifying a different OMPL installation
  • Fixed bug which limited the number of plans considered to the number of threads.
  • Contributors: Chris Lewis, Dave Coleman, Ryan Luna

0.5.5 (2014-03-22)

  • update build system for ROS indigo
  • Removed duplicate call to setPlanningScene(), added various comments
  • Contributors: Dave Coleman, Ioan Sucan

0.5.4 (2014-02-06)

  • fix segfault when multiple goals are passed to move_group

0.5.3 (2013-10-11)

  • update to new API

0.5.2 (2013-09-23)

  • porting to new robot state

0.5.1 (2013-08-13)

  • make headers and author definitions aligned the same way; white space fixes
  • namespace change for profiler

0.5.0 (2013-07-15)

0.4.2 (2013-07-12)

  • white space fixes (tabs are now spaces)
  • port ompl plugin to new base class for planning_interface (using planning contexts)

0.4.1 (2013-07-04)

  • use new location of RRTstar, add PRMstar
  • Added new cost function that takes into account robot joint movements
  • Added ability for parameter sweeping by allowing parameters to be changed in planning contexts
  • Added ability to alter configs in a cache

0.4.0 (2013-05-27)

  • propagating changes from moveit_core

0.3.11 (2013-05-02)

  • remove some debug output and add some fixes
  • some fixes for planning with constraint approximations
  • more refactoring; what used to work (including using constraint approximations) works fine. explicitly storing motions is not yet done
  • refactor constraints storage stuff
  • display random motions in a slightly more robust way
  • remove follow constraints API
  • combine ompl_interface and ompl_interface_ros
  • don\'t print status
  • remove option for ordering constraint approximations (and fix #12)
  • add test for jumping configs
  • use project() instead of sample() for producing goals
  • minor fixes and add demo database construction code
  • switch to using the profiler in moveit and add one more debug tool

0.3.10 (2013-04-17)

  • Merge branch \'groovy-devel\' of github.com:ros-planning/moveit_planners into groovy-devel
  • remove incorrect dep
  • add dynamic reconfigure options for #2

0.3.9 (2013-04-16 13:39)

  • disable old style benchmarking

0.3.8 (2013-04-16 11:23)

  • fix #8
  • use namespace option in ompl plugin
  • remove unused functions
  • add buildtool depends
  • Fixed state deserialization: now update var transform too
  • collapse OMPL plugin to one package
  • robustness fix
  • Fixed github url name

0.3.7 (2013-03-09)

  • Remove configure from PlanningScene
  • add multi-collision to PlanningScene
  • renaming kinematic_model to robot_model

0.3.6 (2013-02-02)

  • complete renaming process
  • rename KinematicState to RobotState, KinematicTrajectory to RobotTrajectory
  • propagating fixes from moveit_core
  • use new robot_trajectory lib

0.3.5 (2013-01-28)

  • fix reporting of goal collisions
  • add some verbose output for failing goals
  • port to new DisplayTrajectory message
  • propagate API changes from planning_interface
  • minor fix
  • use the project() method to improve constraint following algorithm
  • change default build flags

0.3.4 (2012-12-20 23:59)

  • dynamic_reconfigure workaroung

0.3.3 (2012-12-20 21:51)

  • update dyn reconfig call

0.3.2 (2012-12-20 13:45)

  • fix call to obsolete function

0.3.1 (2012-12-19)

  • using the constraint sampler loading library
  • make sure sampled goals are valid
  • fix buildtool tag

0.3.0 (2012-12-10)

  • add a debug msg
  • re-enable heuristic
  • first working version of follow planner
  • most of the follow alg, but not 100% complete yet
  • pass valid state samplers into the follow algorithm
  • add constrained valid state sampler
  • minor fixes
  • fixes some catkin CMakeLists issues
  • add code to allow execution of follow()
  • port test to groovy
  • placeholder for to-be-added algorithm
  • minor touch-ups; no real functional changes other than a bias for state samplers wrt dimension of the space (when sampling in a ball of dimension D, focus the sampling towards the surface of the ball)
  • minor & incomplete fix

0.2.5 (2012-11-26)

  • update to new message API

0.2.4 (2012-11-23)

  • improve error message
  • stricter error checking
  • update include path

0.2.3 (2012-11-21 22:47)

  • use generalized version of getMaximumExtent()

0.2.2 (2012-11-21 22:41)

  • more fixes to planners
  • removed bad include dir
  • fixed some plugin issues
  • fixed include dirs in ompl ros interface
  • added gitignore for ompl/ros

0.2.1 (2012-11-06)

  • update install location of include/

0.2.0 (2012-11-05)

  • udpate install targets

0.1.2 (2012-11-01)

  • bump version
  • install the plugin lib as well
  • add TRRT to the list of options

0.1.1 (2012-10-29)

  • fixes for build against groovy

0.1.0 (2012-10-28)

  • port to groovy
  • added some groovy build system files
  • more moving around of packages

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
abb_irb2400_moveit_config github-ros-industrial-abb
abb_irb6640_moveit_config github-ros-industrial-abb
irb_6640_moveit_config github-ros-industrial-abb
fanuc_lrmate200ic5h_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic_moveit_config github-ros-industrial-fanuc
fanuc_m10ia_moveit_config github-ros-industrial-fanuc
fanuc_m16ib20_moveit_config github-ros-industrial-fanuc
fanuc_m20ia10l_moveit_config github-ros-industrial-fanuc
fanuc_m20ia_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2f_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2p_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200id_moveit_config github-ros-industrial-fanuc_experimental
pr2eus_moveit github-jsk-ros-pkg-jsk_pr2eus
staubli_rx160_moveit_config github-ros-industrial-staubli
ur10_moveit_config github-ros-industrial-universal_robot
ur5_moveit_config github-ros-industrial-universal_robot
vs060_moveit_config github-start-jsk-denso
motoman_sia20d_moveit_config github-ros-industrial-motoman
nao_moveit_config github-ros-naoqi-nao_moveit_config
romeo_moveit_config github-ros-aldebaran-romeo_moveit_config
calvin_moveit_config github-uos-calvin_robot
crom_moveit_config github-RobotnikAutomation-crom_sim
moveit_planners github-ros-planning-moveit_planners
r2_fullbody_moveit_config github-DLu-nasa_r2_common
r2_moveit_config github-DLu-nasa_r2_common
hrp2w_moveit_config github-start-jsk-rtmros_gazebo
samplerobot_moveit_config github-start-jsk-rtmros_gazebo
staro_moveit_config github-start-jsk-rtmros_gazebo
sr_moveit_config github-shadow-robot-sr-ros-interface

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.9.18
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version kinetic-devel
Last Updated 2020-10-12
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt! interface to OMPL

Additional Links

Maintainers

  • Dave Coleman
  • MoveIt! Release Team

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

0.9.18 (2020-01-24)

0.9.17 (2019-07-09)

0.9.16 (2019-06-29)

  • [feature] Helper function to construct constraints from ROS params (#1253)
  • [maintanance] Resolve catkin lint issues (#1137)
  • [maintanance] Improve clang format (#1214)
  • Contributors: Ludovic Delval, Robert Haschke, v4hn

0.9.15 (2018-10-29)

  • [code] cleanup, improvements (#1099)
  • Contributors: Simon Schmeisser

0.9.14 (2018-10-24)

0.9.13 (2018-10-24)

  • [capability] adaptions for OMPL 1.4 (#903)
  • Contributors: Dave Coleman, Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
abb_irb2400_moveit_config github-ros-industrial-abb
abb_irb6640_moveit_config github-ros-industrial-abb
cob_moveit_bringup github-ipa320-cob_manipulation
crane_x7_moveit_config github-rt-net-crane_x7_ros
denso_robot_moveit_config github-DENSORobot-denso_robot_ros
fanuc_cr7ia_moveit_config github-ros-industrial-fanuc
fanuc_cr7ial_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200i_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib3l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5h_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic_moveit_config github-ros-industrial-fanuc
fanuc_m10ia_moveit_config github-ros-industrial-fanuc
fanuc_m16ib20_moveit_config github-ros-industrial-fanuc
fanuc_m20ia10l_moveit_config github-ros-industrial-fanuc
fanuc_m20ia_moveit_config github-ros-industrial-fanuc
fanuc_m20ib25_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2f_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2p_moveit_config github-ros-industrial-fanuc
fanuc_m6ib6s_moveit_config github-ros-industrial-fanuc
fanuc_m6ib_moveit_config github-ros-industrial-fanuc
fanuc_r1000ia80f_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200id7l_moveit_config github-ros-industrial-fanuc_experimental
fanuc_lrmate200id_moveit_config github-ros-industrial-fanuc_experimental
fetch_moveit_config github-fetchrobotics-fetch_ros
fsrobo_r_moveit_config github-FUJISOFT-Robotics-fsrobo_r
pr2eus_moveit github-jsk-ros-pkg-jsk_pr2eus
khi_duaro_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs007l_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs007n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs013n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs020n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs025n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs080n_moveit_config github-Kawasaki-Robotics-khi_robot
tra1_moveit_config github-tork-a-minas
moveit_planners github-ros-planning-moveit
open_manipulator_moveit github-ROBOTIS-GIT-open_manipulator
open_manipulator_with_tb3_waffle_moveit github-ROBOTIS-GIT-open_manipulator_with_tb3
open_manipulator_with_tb3_waffle_pi_moveit github-ROBOTIS-GIT-open_manipulator_with_tb3
panda_moveit_config github-ros-planning-panda_moveit_config
prbt_moveit_config github-PilzDE-pilz_robots
sciurus17_moveit_config github-rt-net-sciurus17_ros
seed_r7_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typef_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg2_arm_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg_arm_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg_moveit_config github-seed-solutions-seed_r7_ros_pkg
sr_moveit_hand_config github-shadow-robot-sr_interface
sr_box_ur10_moveit_config github-shadow-robot-sr_interface
sr_multi_moveit_config github-shadow-robot-sr_interface
sr_multi_moveit_test github-shadow-robot-sr_interface
sr_robot_commander github-shadow-robot-sr_interface
staubli_rx160_moveit_config github-ros-industrial-staubli
ur10_e_moveit_config github-ros-industrial-universal_robot
ur10_moveit_config github-ros-industrial-universal_robot
ur3_e_moveit_config github-ros-industrial-universal_robot
ur3_moveit_config github-ros-industrial-universal_robot
ur5_e_moveit_config github-ros-industrial-universal_robot
ur5_moveit_config github-ros-industrial-universal_robot
abb_irb1200_5_90_moveit_config github-ros-industrial-abb_experimental
abb_irb1200_7_70_moveit_config github-ros-industrial-abb_experimental
abb_irb120_moveit_config github-ros-industrial-abb_experimental
abb_irb120t_moveit_config github-ros-industrial-abb_experimental
abb_irb1600_6_12_moveit_config github-ros-industrial-abb_experimental
framefab_irb6600_workspace_moveit_config github-yijiangh-Choreo
choreo_kr150_2_workspace_moveit_config github-yijiangh-Choreo
choreo_kr5_arc_workspace_moveit_config github-yijiangh-Choreo
kr6_r900_mit_suction_gripper_moveit_config github-yijiangh-Choreo
kr6_r900_workspace_moveit_config github-yijiangh-Choreo
vs060_moveit_config github-start-jsk-denso
moveit_config_a0509 github-doosan-robotics-doosan-robot
moveit_config_a0912 github-doosan-robotics-doosan-robot
moveit_config_h2017 github-doosan-robotics-doosan-robot
moveit_config_h2515 github-doosan-robotics-doosan-robot
moveit_config_m0609 github-doosan-robotics-doosan-robot
moveit_config_m0617 github-doosan-robotics-doosan-robot
moveit_config_m1013 github-doosan-robotics-doosan-robot
moveit_config_m1509 github-doosan-robotics-doosan-robot
iiwa_moveit github-ipa-rwu-iiwa_stack
rv4fl_moveit_config github-tork-a-melfa_robot
rv7fl_moveit_config github-tork-a-melfa_robot
motoman_ma2010_moveit_config github-ros-industrial-motoman
motoman_ms210_moveit_config github-ros-industrial-motoman
motoman_sda10f_moveit_config github-ros-industrial-motoman
motoman_sia20d_moveit_config github-ros-industrial-motoman
motoman_csda10f_moveit_config github-ros-industrial-motoman_experimental
motoman_mpl80_moveit_config github-ros-industrial-motoman_experimental
motoman_sia5d_moveit_config github-ros-industrial-motoman_experimental
nao_moveit_config github-ros-naoqi-nao_moveit_config
pepper_moveit_config github-ros-naoqi-pepper_moveit_config
rb1_dual_ur3_moveit_config github-RobotnikAutomation-rb1_base_common
romeo_moveit_config github-ros-aldebaran-romeo_moveit_config
summit_xl_j2n6s200_moveit_config github-RobotnikAutomation-summit_xl_common
summit_xl_j2s6s200_moveit_config github-RobotnikAutomation-summit_xl_common
summit_xl_j2s6s300_moveit_config github-RobotnikAutomation-summit_xl_common
summit_xl_j2s7s300_moveit_config github-RobotnikAutomation-summit_xl_common
svenzva_moveit github-SvenzvaRobotics-svenzva_ros
turtlebot_arm_moveit_config github-turtlebot-turtlebot_arm
dual_xarm6_moveit_config github-xArm-Developer-xarm_ros
xarm5_vacuum_gripper_moveit_config github-xArm-Developer-xarm_ros
xarm6_vacuum_gripper_moveit_config github-xArm-Developer-xarm_ros
xarm7_vacuum_gripper_moveit_config github-xArm-Developer-xarm_ros
lite6_moveit_config github-xArm-Developer-xarm_ros
uf_robot_moveit_config github-xArm-Developer-xarm_ros
xarm5_gripper_moveit_config github-xArm-Developer-xarm_ros
xarm5_moveit_config github-xArm-Developer-xarm_ros
xarm6_gripper_moveit_config github-xArm-Developer-xarm_ros
xarm6_moveit_config github-xArm-Developer-xarm_ros
xarm7_gripper_moveit_config github-xArm-Developer-xarm_ros
xarm7_moveit_config github-xArm-Developer-xarm_ros

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 1.0.11
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version melodic-devel
Last Updated 2022-09-13
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

MoveIt! interface to OMPL

Additional Links

Maintainers

  • Dave Coleman
  • MoveIt! Release Team

Authors

  • Ioan Sucan
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_planners_ompl

1.0.11 (2022-09-13)

1.0.10 (2022-03-06)

1.0.9 (2022-01-09)

1.0.8 (2021-05-23)

1.0.7 (2020-11-20)

  • [feature] Melodic backports in ompl interface (cleanup) (#2277)
    • add consistent named logging to ompl interface
    • add named logging to the ompl planner service script
    • Remove dead code from ompl interface (related to subspaces and state validity cache)
    • add some documentation to the ompl interface
    • fix clang-tidy warnings in ompl interface
    • fix some spelling errors in the ompl interface
    • fix melodic specific clang-tidy warnings in ompl interface
  • [maint] Add comment to MOVEIT_CLASS_FORWARD (#2315)
  • Contributors: Felix von Drigalski, Jeroen

1.0.6 (2020-08-19)

  • [maint] Adapt repository for splitted moveit_resources layout (#2199)
  • [maint] Migrate to clang-format-10
  • [maint] Optimize includes (#2229)
  • [fix] Fix memcpy bug in copyJointToOMPLState in ompl interface (#2239)
  • Contributors: Jeroen, Markus Vieth, Robert Haschke, Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
abb_irb2400_moveit_config github-ros-industrial-abb
abb_irb6640_moveit_config github-ros-industrial-abb
cob_moveit_bringup github-ipa320-cob_manipulation
crane_x7_moveit_config github-rt-net-crane_x7_ros
denso_robot_moveit_config github-DENSORobot-denso_robot_ros
fanuc_cr7ia_moveit_config github-ros-industrial-fanuc
fanuc_cr7ial_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200i_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib3l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5h_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic_moveit_config github-ros-industrial-fanuc
fanuc_m10ia_moveit_config github-ros-industrial-fanuc
fanuc_m16ib20_moveit_config github-ros-industrial-fanuc
fanuc_m20ia10l_moveit_config github-ros-industrial-fanuc
fanuc_m20ia_moveit_config github-ros-industrial-fanuc
fanuc_m20ib25_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2f_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2p_moveit_config github-ros-industrial-fanuc
fanuc_m6ib6s_moveit_config github-ros-industrial-fanuc
fanuc_m6ib_moveit_config github-ros-industrial-fanuc
fanuc_r1000ia80f_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200id7l_moveit_config github-ros-industrial-fanuc_experimental
fanuc_lrmate200id_moveit_config github-ros-industrial-fanuc_experimental
fetch_moveit_config github-fetchrobotics-fetch_ros
fsrobo_r_moveit_config github-FUJISOFT-Robotics-fsrobo_r
pr2eus_moveit github-jsk-ros-pkg-jsk_pr2eus
khi_duaro_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs007l_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs007n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs013n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs020n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs025n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs080n_moveit_config github-Kawasaki-Robotics-khi_robot
tra1_moveit_config github-tork-a-minas
moveit_planners github-ros-planning-moveit
open_manipulator_with_tb3_waffle_moveit github-ROBOTIS-GIT-open_manipulator_with_tb3
open_manipulator_with_tb3_waffle_pi_moveit github-ROBOTIS-GIT-open_manipulator_with_tb3
panda_moveit_config github-ros-planning-panda_moveit_config
prbt_moveit_config github-PilzDE-pilz_robots
pincher_arm_moveit_config github-fictionlab-pincher_arm
sciurus17_moveit_config github-rt-net-sciurus17_ros
seed_r7_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typef_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg2_arm_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg_arm_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg_moveit_config github-seed-solutions-seed_r7_ros_pkg
sr_moveit_hand_config github-shadow-robot-sr_interface
sr_box_ur10_moveit_config github-shadow-robot-sr_interface
sr_multi_moveit_config github-shadow-robot-sr_interface
sr_multi_moveit_test github-shadow-robot-sr_interface
sr_robot_commander github-shadow-robot-sr_interface
staubli_rx160_moveit_config github-ros-industrial-staubli
ur10_moveit_config github-ros-industrial-universal_robot
ur10e_moveit_config github-ros-industrial-universal_robot
ur16e_moveit_config github-ros-industrial-universal_robot
ur3_moveit_config github-ros-industrial-universal_robot
ur3e_moveit_config github-ros-industrial-universal_robot
ur5_moveit_config github-ros-industrial-universal_robot
ur5e_moveit_config github-ros-industrial-universal_robot

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

Recent questions tagged moveit_planners_ompl at Robotics Stack Exchange