We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We found a special corner case that seems to clear the graph when introducing a loop in the TransformerGraph.
TransformerGraph
Test case to reproduce:
BOOST_AUTO_TEST_CASE(it_handles_loops_without_breaking) { NodePtr root(TransformerGraph::create("root")); TransformerGraph::setTransformation(*root, "frame1", "frame2", Identity, Zero); TransformerGraph::setTransformation(*root, "frame3", "frame1", Identity, Zero); TransformerGraph::setTransformation(*root, "frame3", "frame2", Identity, Zero); BOOST_REQUIRE(TransformerGraph::hasFrame(*root, "frame1")); BOOST_REQUIRE(TransformerGraph::hasFrame(*root, "frame2")); BOOST_REQUIRE(TransformerGraph::hasFrame(*root, "frame3")); }
The text was updated successfully, but these errors were encountered:
Can you try #43 ?
It would be great if you could integrate your test, but make it actually test whether the resulting tree is valid.
Sorry, something went wrong.
No branches or pull requests
We found a special corner case that seems to clear the graph when introducing a loop in the
TransformerGraph
.Test case to reproduce:
The text was updated successfully, but these errors were encountered: