diff --git a/include/hpp/manipulation/graph/edge.hh b/include/hpp/manipulation/graph/edge.hh index 3c9cdb3626b21fdf6674d501a86df9452a4d5a21..ac42495677b7d58acdf042e5877b782d092796bf 100644 --- a/include/hpp/manipulation/graph/edge.hh +++ b/include/hpp/manipulation/graph/edge.hh @@ -154,6 +154,13 @@ namespace hpp { /// \note set value to matrix [row, col] and matrix [col, row]. void securityMarginForPair(const size_type& row, const size_type& col, const value_type& margin); + + /// Accessor to the security margin. + const matrix_t& securityMargins() const + { + return securityMargins_; + } + /// Get direction of the path compare to the edge /// \return true is reverse virtual bool direction (const core::PathPtr_t& path) const;