Skip to content

Commit

Permalink
Merge branch 'master' into macos
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwason authored Dec 14, 2023
2 parents 2d72dca + 788feaa commit a0391b4
Show file tree
Hide file tree
Showing 12 changed files with 35 additions and 7 deletions.
3 changes: 3 additions & 0 deletions tesseract_command_language/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package tesseract_command_language
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.21.5 (2023-12-13)
-------------------

0.21.4 (2023-11-21)
-------------------
* Add clear method to profile dictionary
Expand Down
2 changes: 1 addition & 1 deletion tesseract_command_language/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>tesseract_command_language</name>
<version>0.21.4</version>
<version>0.21.5</version>
<description>The Tesseract Command Language package</description>
<author email="[email protected]">Levi Armstrong</author>
<maintainer email="[email protected]">Levi Armstrong</maintainer>
Expand Down
3 changes: 3 additions & 0 deletions tesseract_examples/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package tesseract_examples
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.21.5 (2023-12-13)
-------------------

0.21.4 (2023-11-21)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion tesseract_examples/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>tesseract_examples</name>
<version>0.21.4</version>
<version>0.21.5</version>
<description>This package contains examples related to this trajopt_ros repository.</description>

<maintainer email="[email protected]">Levi Armstrong</maintainer>
Expand Down
3 changes: 3 additions & 0 deletions tesseract_motion_planners/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package tesseract_motion_planners
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.21.5 (2023-12-13)
-------------------

0.21.4 (2023-11-21)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion tesseract_motion_planners/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>tesseract_motion_planners</name>
<version>0.21.4</version>
<version>0.21.5</version>
<description>This contains tesseract planners</description>

<maintainer email="[email protected]">Levi Armstrong</maintainer>
Expand Down
5 changes: 5 additions & 0 deletions tesseract_task_composer/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog for package tesseract_task_composer
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.21.5 (2023-12-13)
-------------------
* Fix TaskComposerProblem serialization and equal operator
* Contributors: Levi Armstrong

0.21.4 (2023-11-21)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions tesseract_task_composer/core/src/task_composer_problem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ bool TaskComposerProblem::operator==(const TaskComposerProblem& rhs) const
bool equal = true;
equal &= name == rhs.name;
equal &= dotgraph == rhs.dotgraph;
equal &= input == input;
equal &= input == rhs.input;
return equal;
}

Expand All @@ -57,7 +57,7 @@ void TaskComposerProblem::serialize(Archive& ar, const unsigned int /*version*/)
{
ar& boost::serialization::make_nvp("name", name);
ar& boost::serialization::make_nvp("dotgraph", dotgraph);
ar& boost::serialization::make_nvp("input", dotgraph);
ar& boost::serialization::make_nvp("input", input);
}

} // namespace tesseract_planning
Expand Down
2 changes: 1 addition & 1 deletion tesseract_task_composer/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>tesseract_task_composer</name>
<version>0.21.4</version>
<version>0.21.5</version>
<description>The Tesseract Task Composer package</description>
<author email="[email protected]">Levi Armstrong</author>
<maintainer email="[email protected]">Levi Armstrong</maintainer>
Expand Down
11 changes: 11 additions & 0 deletions tesseract_task_composer/test/tesseract_task_composer_core_unit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,17 @@ TEST(TesseractTaskComposerCoreUnit, TaskComposerProblemTests) // NOLINT
auto problem = std::make_unique<TaskComposerProblem>();
EXPECT_EQ(problem->name, "unset");
EXPECT_FALSE(problem->dotgraph);
EXPECT_TRUE(problem->input.isNull());

tesseract_common::JointState joint_state;
joint_state.joint_names = { "joint_1", "joint_2", "joint_3" };
joint_state.position = Eigen::VectorXd::Constant(3, 5);
joint_state.velocity = Eigen::VectorXd::Constant(3, 6);
joint_state.acceleration = Eigen::VectorXd::Constant(3, 7);
joint_state.effort = Eigen::VectorXd::Constant(3, 8);
joint_state.time = 100;

problem->input = joint_state;

// Serialization
test_suite::runSerializationPointerTest(problem, "TaskComposerProblemTests");
Expand Down
3 changes: 3 additions & 0 deletions tesseract_time_parameterization/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package tesseract_time_parameterization
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.21.5 (2023-12-13)
-------------------

0.21.4 (2023-11-21)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion tesseract_time_parameterization/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>tesseract_time_parameterization</name>
<version>0.21.4</version>
<version>0.21.5</version>
<description>The Tesseract Time Parameterization package</description>
<author email="[email protected]">Levi Armstrong</author>
<maintainer email="[email protected]">Levi Armstrong</maintainer>
Expand Down

0 comments on commit a0391b4

Please sign in to comment.