Skip to content

Commit a18efdf

Browse files
committed
Rename PlanProfile to MoveProfile (SimplePlanner)
1 parent 740c0e7 commit a18efdf

11 files changed

+90
-90
lines changed

tesseract_motion_planners/simple/CMakeLists.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ add_library(
22
${PROJECT_NAME}_simple
33
src/interpolation.cpp
44
src/simple_motion_planner.cpp
5-
src/profile/simple_planner_fixed_size_assign_no_ik_plan_profile.cpp
6-
src/profile/simple_planner_fixed_size_assign_plan_profile.cpp
7-
src/profile/simple_planner_fixed_size_plan_profile.cpp
8-
src/profile/simple_planner_lvs_assign_no_ik_plan_profile.cpp
9-
src/profile/simple_planner_lvs_assign_plan_profile.cpp
10-
src/profile/simple_planner_lvs_no_ik_plan_profile.cpp
11-
src/profile/simple_planner_lvs_plan_profile.cpp
5+
src/profile/simple_planner_fixed_size_assign_no_ik_move_profile.cpp
6+
src/profile/simple_planner_fixed_size_assign_move_profile.cpp
7+
src/profile/simple_planner_fixed_size_move_profile.cpp
8+
src/profile/simple_planner_lvs_assign_no_ik_move_profile.cpp
9+
src/profile/simple_planner_lvs_assign_move_profile.cpp
10+
src/profile/simple_planner_lvs_no_ik_move_profile.cpp
11+
src/profile/simple_planner_lvs_move_profile.cpp
1212
src/profile/simple_planner_profile.cpp)
1313
target_link_libraries(${PROJECT_NAME}_simple PUBLIC ${PROJECT_NAME}_core Boost::boost)
1414
target_compile_options(${PROJECT_NAME}_simple PRIVATE ${TESSERACT_COMPILE_OPTIONS_PRIVATE})
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @file simple_planner_fixed_size_assign_no_ik_plan_profile.h
2+
* @file simple_planner_fixed_size_assign_no_ik_move_profile.h
33
* @brief
44
*
55
* @author Matthew Powelson
@@ -24,25 +24,25 @@
2424
* limitations under the License.
2525
*/
2626

27-
#ifndef TESSERACT_MOTION_PLANNERS_SIMPLE_FIXED_SIZE_ASSIGN_NO_IK_PLAN_PROFILE_H
28-
#define TESSERACT_MOTION_PLANNERS_SIMPLE_FIXED_SIZE_ASSIGN_NO_IK_PLAN_PROFILE_H
27+
#ifndef TESSERACT_MOTION_PLANNERS_SIMPLE_FIXED_SIZE_ASSIGN_NO_IK_MOVE_PROFILE_H
28+
#define TESSERACT_MOTION_PLANNERS_SIMPLE_FIXED_SIZE_ASSIGN_NO_IK_MOVE_PROFILE_H
2929

3030
#include <tesseract_motion_planners/simple/profile/simple_planner_profile.h>
3131

3232
namespace tesseract_planning
3333
{
34-
class SimplePlannerFixedSizeAssignNoIKPlanProfile : public SimplePlannerPlanProfile
34+
class SimplePlannerFixedSizeAssignNoIKMoveProfile : public SimplePlannerMoveProfile
3535
{
3636
public:
37-
using Ptr = std::shared_ptr<SimplePlannerFixedSizeAssignNoIKPlanProfile>;
38-
using ConstPtr = std::shared_ptr<const SimplePlannerFixedSizeAssignNoIKPlanProfile>;
37+
using Ptr = std::shared_ptr<SimplePlannerFixedSizeAssignNoIKMoveProfile>;
38+
using ConstPtr = std::shared_ptr<const SimplePlannerFixedSizeAssignNoIKMoveProfile>;
3939

4040
/**
41-
* @brief SimplePlannerFixedSizeAssignPlanProfile
41+
* @brief SimplePlannerFixedSizeAssignMoveProfile
4242
* @param freespace_steps The number of steps to use for freespace instruction
4343
* @param linear_steps The number of steps to use for linear instruction
4444
*/
45-
SimplePlannerFixedSizeAssignNoIKPlanProfile(int freespace_steps = 10, int linear_steps = 10);
45+
SimplePlannerFixedSizeAssignNoIKMoveProfile(int freespace_steps = 10, int linear_steps = 10);
4646

4747
std::vector<MoveInstructionPoly> generate(const MoveInstructionPoly& prev_instruction,
4848
const MoveInstructionPoly& prev_seed,
@@ -65,6 +65,6 @@ class SimplePlannerFixedSizeAssignNoIKPlanProfile : public SimplePlannerPlanProf
6565

6666
} // namespace tesseract_planning
6767

68-
BOOST_CLASS_EXPORT_KEY(tesseract_planning::SimplePlannerFixedSizeAssignNoIKPlanProfile)
68+
BOOST_CLASS_EXPORT_KEY(tesseract_planning::SimplePlannerFixedSizeAssignNoIKMoveProfile)
6969

70-
#endif // TESSERACT_MOTION_PLANNERS_SIMPLE_FIXED_SIZE_ASSIGN_NO_IK_PLAN_PROFILE_H
70+
#endif // TESSERACT_MOTION_PLANNERS_SIMPLE_FIXED_SIZE_ASSIGN_NO_IK_MOVE_PROFILE_H
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @file simple_planner_lvs_assign_plan_profile.h
2+
* @file simple_planner_lvs_assign_move_profile.h
33
* @brief
44
*
55
* @author Roelof Oomen
@@ -24,8 +24,8 @@
2424
* limitations under the License.
2525
*/
2626

27-
#ifndef TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_PLAN_PROFILE_H
28-
#define TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_PLAN_PROFILE_H
27+
#ifndef TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_MOVE_PROFILE_H
28+
#define TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_MOVE_PROFILE_H
2929

3030
#include <tesseract_common/macros.h>
3131
TESSERACT_COMMON_IGNORE_WARNINGS_PUSH
@@ -36,18 +36,18 @@ TESSERACT_COMMON_IGNORE_WARNINGS_POP
3636

3737
namespace tesseract_planning
3838
{
39-
class SimplePlannerLVSAssignPlanProfile : public SimplePlannerPlanProfile
39+
class SimplePlannerLVSAssignMoveProfile : public SimplePlannerMoveProfile
4040
{
4141
public:
42-
using Ptr = std::shared_ptr<SimplePlannerLVSAssignPlanProfile>;
43-
using ConstPtr = std::shared_ptr<const SimplePlannerLVSAssignPlanProfile>;
42+
using Ptr = std::shared_ptr<SimplePlannerLVSAssignMoveProfile>;
43+
using ConstPtr = std::shared_ptr<const SimplePlannerLVSAssignMoveProfile>;
4444

4545
/**
46-
* @brief SimplePlannerFixedSizeAssignPlanProfile
46+
* @brief SimplePlannerFixedSizeAssignMoveProfile
4747
* @param freespace_steps The number of steps to use for freespace instruction
4848
* @param linear_steps The number of steps to use for linear instruction
4949
*/
50-
SimplePlannerLVSAssignPlanProfile(double state_longest_valid_segment_length = 5 * M_PI / 180,
50+
SimplePlannerLVSAssignMoveProfile(double state_longest_valid_segment_length = 5 * M_PI / 180,
5151
double translation_longest_valid_segment_length = 0.1,
5252
double rotation_longest_valid_segment_length = 5 * M_PI / 180,
5353
int min_steps = 1,
@@ -83,6 +83,6 @@ class SimplePlannerLVSAssignPlanProfile : public SimplePlannerPlanProfile
8383

8484
} // namespace tesseract_planning
8585

86-
BOOST_CLASS_EXPORT_KEY(tesseract_planning::SimplePlannerLVSAssignPlanProfile)
86+
BOOST_CLASS_EXPORT_KEY(tesseract_planning::SimplePlannerLVSAssignMoveProfile)
8787

88-
#endif // TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_PLAN_PROFILE_H
88+
#endif // TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_MOVE_PROFILE_H
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @file simple_planner_lvs_assign_no_ik_plan_profile.h
2+
* @file simple_planner_lvs_assign_no_ik_move_profile.h
33
* @brief
44
*
55
* @author Roelof Oomen
@@ -24,8 +24,8 @@
2424
* limitations under the License.
2525
*/
2626

27-
#ifndef TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_NO_IK_PLAN_PROFILE_H
28-
#define TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_NO_IK_PLAN_PROFILE_H
27+
#ifndef TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_NO_IK_MOVE_PROFILE_H
28+
#define TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_NO_IK_MOVE_PROFILE_H
2929

3030
#include <tesseract_common/macros.h>
3131
TESSERACT_COMMON_IGNORE_WARNINGS_PUSH
@@ -36,18 +36,18 @@ TESSERACT_COMMON_IGNORE_WARNINGS_POP
3636

3737
namespace tesseract_planning
3838
{
39-
class SimplePlannerLVSAssignNoIKPlanProfile : public SimplePlannerPlanProfile
39+
class SimplePlannerLVSAssignNoIKMoveProfile : public SimplePlannerMoveProfile
4040
{
4141
public:
42-
using Ptr = std::shared_ptr<SimplePlannerLVSAssignNoIKPlanProfile>;
43-
using ConstPtr = std::shared_ptr<const SimplePlannerLVSAssignNoIKPlanProfile>;
42+
using Ptr = std::shared_ptr<SimplePlannerLVSAssignNoIKMoveProfile>;
43+
using ConstPtr = std::shared_ptr<const SimplePlannerLVSAssignNoIKMoveProfile>;
4444

4545
/**
46-
* @brief SimplePlannerFixedSizeAssignPlanProfile
46+
* @brief SimplePlannerFixedSizeAssignMoveProfile
4747
* @param freespace_steps The number of steps to use for freespace instruction
4848
* @param linear_steps The number of steps to use for linear instruction
4949
*/
50-
SimplePlannerLVSAssignNoIKPlanProfile(double state_longest_valid_segment_length = 5 * M_PI / 180,
50+
SimplePlannerLVSAssignNoIKMoveProfile(double state_longest_valid_segment_length = 5 * M_PI / 180,
5151
double translation_longest_valid_segment_length = 0.1,
5252
double rotation_longest_valid_segment_length = 5 * M_PI / 180,
5353
int min_steps = 1,
@@ -83,6 +83,6 @@ class SimplePlannerLVSAssignNoIKPlanProfile : public SimplePlannerPlanProfile
8383

8484
} // namespace tesseract_planning
8585

86-
BOOST_CLASS_EXPORT_KEY(tesseract_planning::SimplePlannerLVSAssignNoIKPlanProfile)
86+
BOOST_CLASS_EXPORT_KEY(tesseract_planning::SimplePlannerLVSAssignNoIKMoveProfile)
8787

88-
#endif // TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_NO_IK_PLAN_PROFILE_H
88+
#endif // TESSERACT_MOTION_PLANNERS_SIMPLE_PLANNER_LVS_ASSIGN_NO_IK_MOVE_PROFILE_H
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @file simple_planner_fixed_size_assign_no_ik_plan_profile.cpp
2+
* @file simple_planner_fixed_size_assign_no_ik_move_profile.cpp
33
* @brief
44
*
55
* @author Matthew Powelson
@@ -24,7 +24,7 @@
2424
* limitations under the License.
2525
*/
2626

27-
#include <tesseract_motion_planners/simple/profile/simple_planner_fixed_size_assign_no_ik_plan_profile.h>
27+
#include <tesseract_motion_planners/simple/profile/simple_planner_fixed_size_assign_no_ik_move_profile.h>
2828
#include <tesseract_motion_planners/simple/interpolation.h>
2929
#include <tesseract_motion_planners/core/types.h>
3030
#include <tesseract_motion_planners/core/utils.h>
@@ -39,13 +39,13 @@
3939

4040
namespace tesseract_planning
4141
{
42-
SimplePlannerFixedSizeAssignNoIKPlanProfile::SimplePlannerFixedSizeAssignNoIKPlanProfile(int freespace_steps,
42+
SimplePlannerFixedSizeAssignNoIKMoveProfile::SimplePlannerFixedSizeAssignNoIKMoveProfile(int freespace_steps,
4343
int linear_steps)
4444
: freespace_steps(freespace_steps), linear_steps(linear_steps)
4545
{
4646
}
4747

48-
std::vector<MoveInstructionPoly> SimplePlannerFixedSizeAssignNoIKPlanProfile::generate(
48+
std::vector<MoveInstructionPoly> SimplePlannerFixedSizeAssignNoIKMoveProfile::generate(
4949
const MoveInstructionPoly& prev_instruction,
5050
const MoveInstructionPoly& /*prev_seed*/,
5151
const MoveInstructionPoly& base_instruction,
@@ -127,15 +127,15 @@ std::vector<MoveInstructionPoly> SimplePlannerFixedSizeAssignNoIKPlanProfile::ge
127127
}
128128

129129
template <class Archive>
130-
void SimplePlannerFixedSizeAssignNoIKPlanProfile::serialize(Archive& ar, const unsigned int /*version*/)
130+
void SimplePlannerFixedSizeAssignNoIKMoveProfile::serialize(Archive& ar, const unsigned int /*version*/)
131131
{
132-
ar& BOOST_SERIALIZATION_BASE_OBJECT_NVP(SimplePlannerPlanProfile);
132+
ar& BOOST_SERIALIZATION_BASE_OBJECT_NVP(SimplePlannerMoveProfile);
133133
ar& BOOST_SERIALIZATION_NVP(freespace_steps);
134134
ar& BOOST_SERIALIZATION_NVP(linear_steps);
135135
}
136136

137137
} // namespace tesseract_planning
138138

139139
#include <tesseract_common/serialization.h>
140-
TESSERACT_SERIALIZE_ARCHIVES_INSTANTIATE(tesseract_planning::SimplePlannerFixedSizeAssignNoIKPlanProfile)
141-
BOOST_CLASS_EXPORT_IMPLEMENT(tesseract_planning::SimplePlannerFixedSizeAssignNoIKPlanProfile)
140+
TESSERACT_SERIALIZE_ARCHIVES_INSTANTIATE(tesseract_planning::SimplePlannerFixedSizeAssignNoIKMoveProfile)
141+
BOOST_CLASS_EXPORT_IMPLEMENT(tesseract_planning::SimplePlannerFixedSizeAssignNoIKMoveProfile)

tesseract_motion_planners/simple/src/profile/simple_planner_lvs_assign_plan_profile.cpp renamed to tesseract_motion_planners/simple/src/profile/simple_planner_lvs_assign_move_profile.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @file simple_planner_lvs_assign_plan_profile.cpp
2+
* @file simple_planner_lvs_assign_move_profile.cpp
33
* @brief
44
*
55
* @author Roelof Oomen
@@ -24,7 +24,7 @@
2424
* limitations under the License.
2525
*/
2626

27-
#include <tesseract_motion_planners/simple/profile/simple_planner_lvs_assign_plan_profile.h>
27+
#include <tesseract_motion_planners/simple/profile/simple_planner_lvs_assign_move_profile.h>
2828
#include <tesseract_command_language/cartesian_waypoint.h>
2929
#include <tesseract_command_language/poly/move_instruction_poly.h>
3030
#include <tesseract_environment/environment.h>
@@ -37,7 +37,7 @@
3737

3838
namespace tesseract_planning
3939
{
40-
SimplePlannerLVSAssignPlanProfile::SimplePlannerLVSAssignPlanProfile(double state_longest_valid_segment_length,
40+
SimplePlannerLVSAssignMoveProfile::SimplePlannerLVSAssignMoveProfile(double state_longest_valid_segment_length,
4141
double translation_longest_valid_segment_length,
4242
double rotation_longest_valid_segment_length,
4343
int min_steps,
@@ -51,7 +51,7 @@ SimplePlannerLVSAssignPlanProfile::SimplePlannerLVSAssignPlanProfile(double stat
5151
}
5252

5353
std::vector<MoveInstructionPoly>
54-
SimplePlannerLVSAssignPlanProfile::generate(const MoveInstructionPoly& prev_instruction,
54+
SimplePlannerLVSAssignMoveProfile::generate(const MoveInstructionPoly& prev_instruction,
5555
const MoveInstructionPoly& /*prev_seed*/,
5656
const MoveInstructionPoly& base_instruction,
5757
const InstructionPoly& /*next_instruction*/,
@@ -175,9 +175,9 @@ SimplePlannerLVSAssignPlanProfile::generate(const MoveInstructionPoly& prev_inst
175175
}
176176

177177
template <class Archive>
178-
void SimplePlannerLVSAssignPlanProfile::serialize(Archive& ar, const unsigned int /*version*/)
178+
void SimplePlannerLVSAssignMoveProfile::serialize(Archive& ar, const unsigned int /*version*/)
179179
{
180-
ar& BOOST_SERIALIZATION_BASE_OBJECT_NVP(SimplePlannerPlanProfile);
180+
ar& BOOST_SERIALIZATION_BASE_OBJECT_NVP(SimplePlannerMoveProfile);
181181
ar& BOOST_SERIALIZATION_NVP(state_longest_valid_segment_length);
182182
ar& BOOST_SERIALIZATION_NVP(translation_longest_valid_segment_length);
183183
ar& BOOST_SERIALIZATION_NVP(rotation_longest_valid_segment_length);
@@ -188,5 +188,5 @@ void SimplePlannerLVSAssignPlanProfile::serialize(Archive& ar, const unsigned in
188188
} // namespace tesseract_planning
189189

190190
#include <tesseract_common/serialization.h>
191-
TESSERACT_SERIALIZE_ARCHIVES_INSTANTIATE(tesseract_planning::SimplePlannerLVSAssignPlanProfile)
192-
BOOST_CLASS_EXPORT_IMPLEMENT(tesseract_planning::SimplePlannerLVSAssignPlanProfile)
191+
TESSERACT_SERIALIZE_ARCHIVES_INSTANTIATE(tesseract_planning::SimplePlannerLVSAssignMoveProfile)
192+
BOOST_CLASS_EXPORT_IMPLEMENT(tesseract_planning::SimplePlannerLVSAssignMoveProfile)
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @file simple_planner_lvs_assign_no_ik_plan_profile.cpp
2+
* @file simple_planner_lvs_assign_no_ik_move_profile.cpp
33
* @brief
44
*
55
* @author Roelof Oomen
@@ -24,7 +24,7 @@
2424
* limitations under the License.
2525
*/
2626

27-
#include <tesseract_motion_planners/simple/profile/simple_planner_lvs_assign_no_ik_plan_profile.h>
27+
#include <tesseract_motion_planners/simple/profile/simple_planner_lvs_assign_no_ik_move_profile.h>
2828
#include <tesseract_command_language/cartesian_waypoint.h>
2929
#include <tesseract_command_language/poly/move_instruction_poly.h>
3030
#include <tesseract_environment/environment.h>
@@ -37,7 +37,7 @@
3737

3838
namespace tesseract_planning
3939
{
40-
SimplePlannerLVSAssignNoIKPlanProfile::SimplePlannerLVSAssignNoIKPlanProfile(
40+
SimplePlannerLVSAssignNoIKMoveProfile::SimplePlannerLVSAssignNoIKMoveProfile(
4141
double state_longest_valid_segment_length,
4242
double translation_longest_valid_segment_length,
4343
double rotation_longest_valid_segment_length,
@@ -52,7 +52,7 @@ SimplePlannerLVSAssignNoIKPlanProfile::SimplePlannerLVSAssignNoIKPlanProfile(
5252
}
5353

5454
std::vector<MoveInstructionPoly>
55-
SimplePlannerLVSAssignNoIKPlanProfile::generate(const MoveInstructionPoly& prev_instruction,
55+
SimplePlannerLVSAssignNoIKMoveProfile::generate(const MoveInstructionPoly& prev_instruction,
5656
const MoveInstructionPoly& /*prev_seed*/,
5757
const MoveInstructionPoly& base_instruction,
5858
const InstructionPoly& /*next_instruction*/,
@@ -144,9 +144,9 @@ SimplePlannerLVSAssignNoIKPlanProfile::generate(const MoveInstructionPoly& prev_
144144
}
145145

146146
template <class Archive>
147-
void SimplePlannerLVSAssignNoIKPlanProfile::serialize(Archive& ar, const unsigned int /*version*/)
147+
void SimplePlannerLVSAssignNoIKMoveProfile::serialize(Archive& ar, const unsigned int /*version*/)
148148
{
149-
ar& BOOST_SERIALIZATION_BASE_OBJECT_NVP(SimplePlannerPlanProfile);
149+
ar& BOOST_SERIALIZATION_BASE_OBJECT_NVP(SimplePlannerMoveProfile);
150150
ar& BOOST_SERIALIZATION_NVP(state_longest_valid_segment_length);
151151
ar& BOOST_SERIALIZATION_NVP(translation_longest_valid_segment_length);
152152
ar& BOOST_SERIALIZATION_NVP(rotation_longest_valid_segment_length);
@@ -157,5 +157,5 @@ void SimplePlannerLVSAssignNoIKPlanProfile::serialize(Archive& ar, const unsigne
157157
} // namespace tesseract_planning
158158

159159
#include <tesseract_common/serialization.h>
160-
TESSERACT_SERIALIZE_ARCHIVES_INSTANTIATE(tesseract_planning::SimplePlannerLVSAssignNoIKPlanProfile)
161-
BOOST_CLASS_EXPORT_IMPLEMENT(tesseract_planning::SimplePlannerLVSAssignNoIKPlanProfile)
160+
TESSERACT_SERIALIZE_ARCHIVES_INSTANTIATE(tesseract_planning::SimplePlannerLVSAssignNoIKMoveProfile)
161+
BOOST_CLASS_EXPORT_IMPLEMENT(tesseract_planning::SimplePlannerLVSAssignNoIKMoveProfile)

tesseract_motion_planners/simple/test/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ macro(add_gtest test_name test_file)
1818
add_dependencies(run_tests ${test_name})
1919
endmacro()
2020

21-
add_gtest(${PROJECT_NAME}_simple_planner_fixed_size_assign_no_ik_plan_unit
22-
simple_planner_fixed_size_assign_no_ik_plan_unit.cpp)
23-
add_gtest(${PROJECT_NAME}_simple_planner_fixed_size_plan_unit simple_planner_fixed_size_plan_unit.cpp)
24-
add_gtest(${PROJECT_NAME}_simple_planner_lvs_plan_unit simple_planner_lvs_plan_unit.cpp)
21+
add_gtest(${PROJECT_NAME}_simple_planner_fixed_size_assign_no_ik_move_unit
22+
simple_planner_fixed_size_assign_no_ik_move_unit.cpp)
23+
add_gtest(${PROJECT_NAME}_simple_planner_fixed_size_move_unit simple_planner_fixed_size_move_unit.cpp)
24+
add_gtest(${PROJECT_NAME}_simple_planner_lvs_move_unit simple_planner_lvs_move_unit.cpp)

0 commit comments

Comments
 (0)