Changeset 1144:760a5f690163 in lemon-main
- Timestamp:
- 05/15/15 10:15:30 (10 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- lemon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/lp_base.h
r1130 r1144 197 197 /// for(auto c: lp.cols()) 198 198 /// doSomething(c); 199 ///\endcode 199 200 LemonRangeWrapper1<ColIt, LpBase> cols() { 200 201 return LemonRangeWrapper1<ColIt, LpBase>(*this); … … 307 308 /// for(auto c: lp.rows()) 308 309 /// doSomething(c); 310 ///\endcode 309 311 LemonRangeWrapper1<RowIt, LpBase> rows() { 310 312 return LemonRangeWrapper1<RowIt, LpBase>(*this); … … 658 660 ///This data structure represents a column of the matrix, 659 661 ///thas is it strores a linear expression of the dual variables 660 ///(\ref Row "Row"s).662 ///(\ref LpBase::Row "Row"s). 661 663 /// 662 664 ///There are several ways to access and modify the contents of this … … 675 677 ///(This code computes the sum of all coefficients). 676 678 ///- Numbers (<tt>double</tt>'s) 677 ///and variables (\ref Row "Row"s) directly convert to an679 ///and variables (\ref LpBase::Row "Row"s) directly convert to an 678 680 ///\ref DualExpr and the usual linear operations are defined, so 679 681 ///\code … … 1187 1189 ///\param t can be 1188 1190 ///- a standard STL compatible iterable container with 1189 ///\ref Rowas its \c values_type like1191 ///\ref LpBase::Row "Row" as its \c values_type like 1190 1192 ///\code 1191 1193 ///std::vector<LpBase::Row> … … 1193 1195 ///\endcode 1194 1196 ///- a standard STL compatible iterable container with 1195 ///\ref Rowas its \c mapped_type like1197 ///\ref LpBase::Row "Row" as its \c mapped_type like 1196 1198 ///\code 1197 1199 ///std::map<AnyType,LpBase::Row> -
lemon/vf2.h
r1143 r1144 426 426 ///The mapping type is set to \ref SUBGRAPH by default. 427 427 /// 428 ///\sa See \ref for the possible values.428 ///\sa See \ref Vf2MappingType for the possible values. 429 429 void mappingType(Vf2MappingType m_type) { _mapping_type = m_type; } 430 430 … … 562 562 ///the node labels defining equivalence relation between them. 563 563 /// 564 ///\param m1 It is arbitrary \ref ReadMap "readable node map" of g1. 565 ///\param m1 It is arbitrary \ref ReadMap "readable node map" of g2. 564 ///\param m1 It is arbitrary \ref concepts::ReadMap "readable node map" 565 ///of g1. 566 ///\param m2 It is arbitrary \ref concepts::ReadMap "readable node map" 567 ///of g2. 566 568 /// 567 569 ///The value type of these maps must be equal comparable. … … 581 583 ///The mapping type is set to \ref SUBGRAPH by default. 582 584 /// 583 ///\sa See \ref for the possible values.585 ///\sa See \ref Vf2MappingType for the possible values. 584 586 Vf2Wizard<Base> &mappingType(Vf2MappingType m_type) 585 587 {
Note: See TracChangeset
for help on using the changeset viewer.