-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add flags to Saver classes to specify what to save #339
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
0bcee06
Add flags to select what should be saved by Saver classes.
brianhou 1620118
Add more tests.
brianhou eaf5718
Merge branch 'master' into enhancement/brianhou/saver-flags
brianhou a47a693
Restructure SaverOptions.
brianhou 0ab8008
Address @jslee02's comments.
brianhou f08fa35
Remove incorrect const specifier.
brianhou d7e1b3e
Update CHANGELOG.md.
brianhou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,122 @@ | ||
#include <dart/dynamics/dynamics.hpp> | ||
#include <gtest/gtest.h> | ||
#include <aikido/statespace/SO2.hpp> | ||
#include <aikido/statespace/dart/MetaSkeletonStateSaver.hpp> | ||
#include <aikido/statespace/dart/MetaSkeletonStateSpace.hpp> | ||
|
||
using dart::dynamics::Skeleton; | ||
using dart::dynamics::RevoluteJoint; | ||
using aikido::statespace::dart::MetaSkeletonStateSpace; | ||
using aikido::statespace::dart::MetaSkeletonStateSaver; | ||
using aikido::statespace::SO2; | ||
|
||
TEST(MetaSkeletonStateSaver, MetaSkeletonStateSpaceReturnsToOriginal) | ||
class MetaSkeletonStateSaverTest : public testing::Test | ||
{ | ||
auto skeleton = Skeleton::create(); | ||
skeleton->createJointAndBodyNodePair<RevoluteJoint>(); | ||
public: | ||
void SetUp() | ||
{ | ||
mSkeleton = Skeleton::create(); | ||
mSkeleton->createJointAndBodyNodePair<RevoluteJoint>(); | ||
|
||
mSkeleton->setPosition(0, 1.); | ||
mSkeleton->setPositionLowerLimit(0, 0.); | ||
mSkeleton->setPositionUpperLimit(0, 3.); | ||
} | ||
|
||
protected: | ||
::dart::dynamics::SkeletonPtr mSkeleton; | ||
}; | ||
|
||
TEST_F(MetaSkeletonStateSaverTest, MetaSkeletonStateSpaceReturnsToOriginal) | ||
{ | ||
EXPECT_DOUBLE_EQ(0., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(3., mSkeleton->getPositionUpperLimit(0)); | ||
|
||
{ | ||
auto saver = MetaSkeletonStateSaver(mSkeleton); | ||
DART_UNUSED(saver); | ||
|
||
auto space = std::make_shared<MetaSkeletonStateSpace>(skeleton.get()); | ||
ASSERT_EQ(1, space->getNumSubspaces()); | ||
mSkeleton->setPositionLowerLimit(0, 1.); | ||
mSkeleton->setPositionUpperLimit(0, 5.); | ||
mSkeleton->setPosition(0, 4.); | ||
|
||
auto state = space->createState(); | ||
auto substate = state.getSubStateHandle<SO2>(0); | ||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(4., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(5., mSkeleton->getPositionUpperLimit(0)); | ||
} | ||
|
||
substate.setAngle(1.); | ||
space->setState(skeleton.get(), state); | ||
EXPECT_DOUBLE_EQ(1., skeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(0., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(3., mSkeleton->getPositionUpperLimit(0)); | ||
} | ||
|
||
TEST_F(MetaSkeletonStateSaverTest, Flags_None) | ||
{ | ||
EXPECT_DOUBLE_EQ(0., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(3., mSkeleton->getPositionUpperLimit(0)); | ||
|
||
{ | ||
auto saver = MetaSkeletonStateSaver(skeleton); | ||
auto saver = MetaSkeletonStateSaver(mSkeleton, 0); | ||
DART_UNUSED(saver); | ||
|
||
substate.setAngle(6.); | ||
space->setState(skeleton.get(), state); | ||
EXPECT_DOUBLE_EQ(6., skeleton->getPosition(0)); | ||
mSkeleton->setPositionLowerLimit(0, 1.); | ||
mSkeleton->setPositionUpperLimit(0, 5.); | ||
mSkeleton->setPosition(0, 4.); | ||
|
||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(4., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(5., mSkeleton->getPositionUpperLimit(0)); | ||
} | ||
EXPECT_DOUBLE_EQ(1., skeleton->getPosition(0)); | ||
|
||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(4., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(5., mSkeleton->getPositionUpperLimit(0)); | ||
} | ||
|
||
TEST_F(MetaSkeletonStateSaverTest, Flags_PositionsOnly) | ||
{ | ||
EXPECT_DOUBLE_EQ(0., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(3., mSkeleton->getPositionUpperLimit(0)); | ||
|
||
{ | ||
auto saver = MetaSkeletonStateSaver( | ||
mSkeleton, MetaSkeletonStateSaver::Options::POSITIONS); | ||
DART_UNUSED(saver); | ||
|
||
mSkeleton->setPositionLowerLimit(0, 1.); | ||
mSkeleton->setPositionUpperLimit(0, 5.); | ||
mSkeleton->setPosition(0, 4.); | ||
|
||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(4., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(5., mSkeleton->getPositionUpperLimit(0)); | ||
} | ||
|
||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(5., mSkeleton->getPositionUpperLimit(0)); | ||
} | ||
|
||
TEST_F(MetaSkeletonStateSaverTest, Flags_PositionLimitsOnly) | ||
{ | ||
EXPECT_DOUBLE_EQ(0., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(3., mSkeleton->getPositionUpperLimit(0)); | ||
|
||
{ | ||
auto saver = MetaSkeletonStateSaver( | ||
mSkeleton, MetaSkeletonStateSaver::Options::POSITION_LIMITS); | ||
DART_UNUSED(saver); | ||
|
||
mSkeleton->setPositionLowerLimit(0, 1.); | ||
mSkeleton->setPositionUpperLimit(0, 5.); | ||
mSkeleton->setPosition(0, 2.); | ||
|
||
EXPECT_DOUBLE_EQ(1., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(2., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(5., mSkeleton->getPositionUpperLimit(0)); | ||
} | ||
|
||
EXPECT_DOUBLE_EQ(0., mSkeleton->getPositionLowerLimit(0)); | ||
EXPECT_DOUBLE_EQ(2., mSkeleton->getPosition(0)); | ||
EXPECT_DOUBLE_EQ(3., mSkeleton->getPositionUpperLimit(0)); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit:
setUp()
? 😄There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you mean? Isn't the correct name
SetUp
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe function naming convention is to start with a lower case (note that
SetUp
begins with an upper latter "S").There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, this is required by gtest. Sorry for the noise. 😞