| 29 | using namespace WireVertexSymmetryAttributeHelper; |
| 30 | |
| 31 | void WireVertexSymmetryAttribute::compute(const WireNetwork& network) { |
| 32 | Operators ops = get_symmetry_operators( |
| 33 | network.get_dim(), network.center()); |
| 34 | VectorI orbit_labels = get_vertex_labels(network.get_vertices(), ops); |
| 35 | m_values = orbit_labels.cast<Float>(); |
| 36 | } |
| 37 |
nothing calls this directly
no test coverage detected