Like this question already asked, I\'d like to initialize a container using STL where the elements are hard-coded in the cleanest manner possible. In this case, the elements
#include
#include
#include
using namespace std;
using namespace boost::assign;
int main()
{
set > A;
A = list_of
(list_of(0)(0)(1))
(list_of(0)(1)(0))
(list_of(1)(0)(0));
(list_of(0)(0)(0));
return 0;
}