CASM  1.1.0
A Clusters Approach to Statistical Mechanics
Orbit.cc
Go to the documentation of this file.
2 
3 namespace CASM {
4 namespace Orbit_impl {
5 
6 std::ostream &operator<<(std::ostream &sout, const RelEqMap &map) {
7  sout << "RelEqMap a: " << map.a << std::endl;
8  for (const auto &row : map.map) {
9  sout << " b: " << row.b << " op: ";
10  for (const auto &val : row.values) {
11  sout << val << " ";
12  }
13  sout << std::endl;
14  }
15  return sout;
16 }
17 } // namespace Orbit_impl
18 } // namespace CASM
std::ostream & operator<<(std::ostream &sout, const RelEqMap &map)
Definition: Orbit.cc:6
Main CASM namespace.
Definition: APICommand.hh:8
std::set< EqMapRow > map
Definition: Orbit_impl.hh:72