Skip to content

Commit

Permalink
Separate start/end states in OMPL unit test to prevent collisions wit…
Browse files Browse the repository at this point in the history
…h separating wall during sampling
  • Loading branch information
marip8 committed Dec 9, 2021
1 parent dc3b39b commit f769fcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tesseract_motion_planners/test/ompl_planner_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ class OMPLTestFixture : public ::testing::Test
/** @brief Tesseract OMPL motion planner */
const OMPLMotionPlanner ompl_planner;
/** @brief Arbitrary trajectory start state */
const std::vector<double> start_state_ = { -0.5, 0.5, 0.0, -1.3348, 0.0, 1.4959, 0.0 };
const std::vector<double> start_state_ = { -0.6, 0.5, 0.0, -1.3348, 0.0, 1.4959, 0.0 };
/** @brief Arbitrary trajectory end state */
const std::vector<double> end_state_ = { 0.5, 0.5, 0.0, -1.3348, 0.0, 1.4959, 0.0 };
const std::vector<double> end_state_ = { 0.6, 0.5, 0.0, -1.3348, 0.0, 1.4959, 0.0 };
/** @brief Motion planning profile name */
const std::string profile_name_ = "TEST_PROFILE";
/** @brief Number of steps in the seed trajectory, equivalent to the the number of states minus one */
Expand Down

0 comments on commit f769fcd

Please sign in to comment.