c++boostdictionaryboost-bimap

Using boost::associative property map with boost::BIMAP interface


I am not able to implement associative property map interface of boost for a boost bimap.

I have a bimap as follows and I try to define a boost::associative property map for it. I want to use Put and Get helper functions for my bimap.. the code is as follows:

 typedef boost::bimaps::bimap< vertex_descriptor_t, size_t >       vd_idx_bimap_t;
 typedef boost::associative_property_map< vd_idx_bimap_t >         asso_vd_idx_bimap_t;

 // define bimap
 vd_idx_bimap_t        my_bimap;
 asso_vd_idx_bimap_t   my_asso_bimap(my_bimap);

I get a compile error as

  error: no type named âsecond_typeâ in âboost::bimaps::container_adaptor::container_adaptor<boost::multi_index::detail::ordered_index<boost::m.... goes on long list. 

I am aware, bimaps are supported through property maps. see here for documentation. Just wondering how would i use associative property map for it.. if i can define left or right bimap for my associative property map, that would also be fine. please suggest.


Solution

  • You need to tell it which side of the bimap to use:

    typedef boost::associative_property_map<vd_idx_bimap_t::left_map> asso_vd_idx_bimap_t;
    // OR
    typedef boost::associative_property_map<vd_idx_bimap_t::right_map> asso_vd_idx_bimap_t;
    

    So, see it Live on Coliru

    #include <boost/bimap.hpp> 
    #include <boost/property_map/property_map.hpp> 
    #include <iostream> 
    
    using namespace boost; 
    
    int main() 
    {
        typedef int vertex_descriptor_t;
        typedef boost::bimaps::bimap< vertex_descriptor_t, size_t > vd_idx_bimap_t;
        typedef boost::associative_property_map<vd_idx_bimap_t::left_map>   asso_vd_idx_bimap_t;
    
        // define bimap
        vd_idx_bimap_t        my_bimap;
        asso_vd_idx_bimap_t   my_asso_bimap(my_bimap.left);
    }