Remove Group::name

This commit is contained in:
David Allemang
2022-09-13 21:34:30 -04:00
parent f606ea3b4b
commit c47c6262c0
5 changed files with 54 additions and 134 deletions

View File

@@ -2,6 +2,6 @@
namespace tc {
SubGroup Group::subgroup(const std::vector<int> &gens) const {
return SubGroup(*this, gens);
return {*this, gens};
}
}