Skip to content
Snippets Groups Projects
Commit 9baeed85 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Fix bug: insert passive dofs in ConfigProjector

parent 807df8fb
No related branches found
No related tags found
No related merge requests found
...@@ -103,9 +103,13 @@ namespace hpp { ...@@ -103,9 +103,13 @@ namespace hpp {
/// \return true is at least one NumericalConstraintPtr_t was inserted. /// \return true is at least one NumericalConstraintPtr_t was inserted.
bool insertNumericalConstraintsForPath (ConfigProjectorPtr_t& proj) const bool insertNumericalConstraintsForPath (ConfigProjectorPtr_t& proj) const
{ {
assert (numericalConstraintsForPath_.size () == passiveDofsForPath_.size ());
IntervalsContainer_t::const_iterator itpdofs = passiveDofsForPath_.begin ();
for (NumericalConstraints_t::const_iterator it = numericalConstraintsForPath_.begin(); for (NumericalConstraints_t::const_iterator it = numericalConstraintsForPath_.begin();
it != numericalConstraintsForPath_.end(); it++) it != numericalConstraintsForPath_.end(); it++) {
proj->add (*it); proj->add (*it, *itpdofs);
itpdofs++;
}
return !numericalConstraintsForPath_.empty (); return !numericalConstraintsForPath_.empty ();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment