COIN-OR::LEMON - Graph Library

Changeset 2260:4274224f8a7d in lemon-0.x for lemon/maps.h


Ignore:
Timestamp:
10/24/06 19:19:16 (17 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3016
Message:

concept -> concepts (namespace & directory)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/maps.h

    r2258 r2260  
    3030///\brief Miscellaneous property maps
    3131///
    32 ///\todo This file has the same name as the concept file in concept/,
     32///\todo This file has the same name as the concept file in concepts/,
    3333/// and this is not easily detectable in docs...
    3434
     
    253253  ///Convert the \c Value of a map to another type.
    254254
    255   ///This \ref concept::ReadMap "read only map"
     255  ///This \ref concepts::ReadMap "read only map"
    256256  ///converts the \c Value of a maps to type \c T.
    257257  ///Its \c Key is inherited from \c M.
     
    290290  ///Simple wrapping of the map
    291291
    292   ///This \ref concept::ReadMap "read only map" returns the simple
     292  ///This \ref concepts::ReadMap "read only map" returns the simple
    293293  ///wrapping of the given map. Sometimes the reference maps cannot be
    294294  ///combined with simple read maps. This map adaptor wraps the given
     
    310310  ///Simple writeable wrapping of the map
    311311
    312   ///This \ref concept::ReadMap "read only map" returns the simple
     312  ///This \ref concepts::ReadMap "read only map" returns the simple
    313313  ///wrapping of the given map. Sometimes the reference maps cannot be
    314314  ///combined with simple read-write maps. This map adaptor wraps the
     
    331331  ///Sum of two maps
    332332
    333   ///This \ref concept::ReadMap "read only map" returns the sum of the two
     333  ///This \ref concepts::ReadMap "read only map" returns the sum of the two
    334334  ///given maps. Its \c Key and \c Value will be inherited from \c M1.
    335335  ///The \c Key and \c Value of M2 must be convertible to those of \c M1.
     
    364364  ///Shift a map with a constant.
    365365
    366   ///This \ref concept::ReadMap "read only map" returns the sum of the
     366  ///This \ref concepts::ReadMap "read only map" returns the sum of the
    367367  ///given map and a constant value.
    368368  ///Its \c Key and \c Value is inherited from \c M.
     
    397397  ///Shift a map with a constant.
    398398
    399   ///This \ref concept::ReadWriteMap "read-write map" returns the sum of the
     399  ///This \ref concepts::ReadWriteMap "read-write map" returns the sum of the
    400400  ///given map and a constant value. It makes also possible to write the map.
    401401  ///Its \c Key and \c Value is inherited from \c M.
     
    446446  ///Difference of two maps
    447447
    448   ///This \ref concept::ReadMap "read only map" returns the difference
     448  ///This \ref concepts::ReadMap "read only map" returns the difference
    449449  ///of the values of the two
    450450  ///given maps. Its \c Key and \c Value will be inherited from \c M1.
     
    477477  ///Product of two maps
    478478
    479   ///This \ref concept::ReadMap "read only map" returns the product of the
     479  ///This \ref concepts::ReadMap "read only map" returns the product of the
    480480  ///values of the two
    481481  ///given
     
    508508  ///Scales a maps with a constant.
    509509
    510   ///This \ref concept::ReadMap "read only map" returns the value of the
     510  ///This \ref concepts::ReadMap "read only map" returns the value of the
    511511  ///given map multiplied from the left side with a constant value.
    512512  ///Its \c Key and \c Value is inherited from \c M.
     
    541541  ///Scales a maps with a constant.
    542542
    543   ///This \ref concept::ReadWriteMap "read-write map" returns the value of the
     543  ///This \ref concepts::ReadWriteMap "read-write map" returns the value of the
    544544  ///given map multiplied from the left side with a constant value. It can
    545545  ///be used as write map also if the given multiplier is not zero.
     
    581581  ///Quotient of two maps
    582582
    583   ///This \ref concept::ReadMap "read only map" returns the quotient of the
     583  ///This \ref concepts::ReadMap "read only map" returns the quotient of the
    584584  ///values of the two
    585585  ///given maps. Its \c Key and \c Value will be inherited from \c M1.
     
    611611  ///Composition of two maps
    612612
    613   ///This \ref concept::ReadMap "read only map" returns the composition of
     613  ///This \ref concepts::ReadMap "read only map" returns the composition of
    614614  ///two
    615615  ///given maps. That is to say, if \c m1 is of type \c M1 and \c m2 is
     
    656656  ///
    657657  ///
    658   ///This \ref concept::ReadMap "read only map" takes two maps and a
     658  ///This \ref concepts::ReadMap "read only map" takes two maps and a
    659659  ///binary functor and returns the composition of
    660660  ///the two
     
    728728  ///Negative value of a map
    729729
    730   ///This \ref concept::ReadMap "read only map" returns the negative
     730  ///This \ref concepts::ReadMap "read only map" returns the negative
    731731  ///value of the
    732732  ///value returned by the
     
    749749  ///Negative value of a map
    750750
    751   ///This \ref concept::ReadWriteMap "read-write map" returns the negative
     751  ///This \ref concepts::ReadWriteMap "read-write map" returns the negative
    752752  ///value of the value returned by the
    753753  ///given map. Its \c Key and \c Value will be inherited from \c M.
     
    784784  ///Absolute value of a map
    785785
    786   ///This \ref concept::ReadMap "read only map" returns the absolute value
     786  ///This \ref concepts::ReadMap "read only map" returns the absolute value
    787787  ///of the
    788788  ///value returned by the
     
    833833  ///Converts an STL style functor to a map
    834834
    835   ///This \ref concept::ReadMap "read only map" returns the value
     835  ///This \ref concepts::ReadMap "read only map" returns the value
    836836  ///of a
    837837  ///given map.
     
    891891  ///
    892892  ///For the sake of convenience it also works as
    893   ///a ususal \ref concept::ReadMap "readable map",
     893  ///a ususal \ref concepts::ReadMap "readable map",
    894894  ///i.e. <tt>operator[]</tt> and the \c Key and \c Value typedefs also exist.
    895895
     
    926926  ///Applies all map setting operations to two maps
    927927
    928   ///This map has two \ref concept::ReadMap "readable map"
     928  ///This map has two \ref concepts::ReadMap "readable map"
    929929  ///parameters and each read request will be passed just to the
    930930  ///first map. This class is the just readable map type of the ForkWriteMap.
     
    950950  ///Applies all map setting operations to two maps
    951951
    952   ///This map has two \ref concept::WriteMap "writable map"
     952  ///This map has two \ref concepts::WriteMap "writable map"
    953953  ///parameters and each write request will be passed to both of them.
    954   ///If \c M1 is also \ref concept::ReadMap "readable",
     954  ///If \c M1 is also \ref concepts::ReadMap "readable",
    955955  ///then the read operations will return the
    956956  ///corresponding values of \c M1.
     
    997997  ///Logical 'not' of a map
    998998 
    999   ///This bool \ref concept::ReadMap "read only map" returns the
     999  ///This bool \ref concepts::ReadMap "read only map" returns the
    10001000  ///logical negation of
    10011001  ///value returned by the
     
    10181018  ///Logical 'not' of a map with writing possibility
    10191019 
    1020   ///This bool \ref concept::ReadWriteMap "read-write map" returns the
     1020  ///This bool \ref concepts::ReadWriteMap "read-write map" returns the
    10211021  ///logical negation of value returned by the given map. When it is set,
    10221022  ///the opposite value is set to the original map.
Note: See TracChangeset for help on using the changeset viewer.