| 24 | namespace bc = boost::compute; |
| 25 | |
| 26 | BOOST_AUTO_TEST_CASE(concept_check) |
| 27 | { |
| 28 | BOOST_CONCEPT_ASSERT((boost::Container<bc::flat_set<int> >)); |
| 29 | // BOOST_CONCEPT_ASSERT((boost::SimpleAssociativeContainer<bc::flat_set<int> >)); |
| 30 | // BOOST_CONCEPT_ASSERT((boost::UniqueAssociativeContainer<bc::flat_set<int> >)); |
| 31 | BOOST_CONCEPT_ASSERT((boost::RandomAccessIterator<bc::flat_set<int>::iterator>)); |
| 32 | BOOST_CONCEPT_ASSERT((boost::RandomAccessIterator<bc::flat_set<int>::const_iterator>)); |
| 33 | } |
| 34 | |
| 35 | BOOST_AUTO_TEST_CASE(insert) |
| 36 | { |