introduce RelationSet, fix namespace for groups.cpp/.h

This commit is contained in:
2019-12-27 21:58:15 -05:00
parent 3aae0b5286
commit 873102a8c3
6 changed files with 95 additions and 87 deletions

View File

@@ -1,10 +1,12 @@
#pragma once
#include <array>
#include <vector>
namespace tc {
struct Mult {
int gen0, gen1, mult;
std::array<int, 2> gens;
int mult;
};
struct Group {