equal
  deleted
  inserted
  replaced
  
    
    
   199     return ConstMatrixColMap<MatrixMap>(matrixMap, col);  | 
   199     return ConstMatrixColMap<MatrixMap>(matrixMap, col);  | 
   200   }  | 
   200   }  | 
   201   | 
   201   | 
   202   /// \brief Container for store values for each ordered pair of graph items  | 
   202   /// \brief Container for store values for each ordered pair of graph items  | 
   203   ///  | 
   203   ///  | 
   204   /// This data structure can strore for each pairs of the same item  | 
   204   /// This data structure can strore for each pair of the same item  | 
   205   /// type a value. It increase the size of the container when the   | 
   205   /// type a value. It increase the size of the container when the   | 
   206   /// associated graph modified, so it updated automaticly whenever  | 
   206   /// associated graph modified, so it updated automaticly whenever  | 
   207   /// it is needed.  | 
   207   /// it is needed.  | 
   208   template <typename _Graph, typename _Item, typename _Value>  | 
   208   template <typename _Graph, typename _Item, typename _Value>  | 
   209   class DynamicMatrixMap   | 
   209   class DynamicMatrixMap   | 
   310     std::vector<Value> values;  | 
   310     std::vector<Value> values;  | 
   311   };  | 
   311   };  | 
   312   | 
   312   | 
   313   /// \brief Container for store values for each unordered pair of graph items  | 
   313   /// \brief Container for store values for each unordered pair of graph items  | 
   314   ///  | 
   314   ///  | 
   315   /// This data structure can strore for each pairs of the same item  | 
   315   /// This data structure can strore for each pair of the same item  | 
   316   /// type a value. It increase the size of the container when the   | 
   316   /// type a value. It increase the size of the container when the   | 
   317   /// associated graph modified, so it updated automaticly whenever  | 
   317   /// associated graph modified, so it updated automaticly whenever  | 
   318   /// it is needed.   | 
   318   /// it is needed.   | 
   319   template <typename _Graph, typename _Item, typename _Value>  | 
   319   template <typename _Graph, typename _Item, typename _Value>  | 
   320   class DynamicSymMatrixMap   | 
   320   class DynamicSymMatrixMap   |