mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2026-01-24 06:39:20 -05:00
15 lines
275 B
C++
15 lines
275 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
#include <functional>
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "util.hpp"
|
|
#include "cosets.hpp"
|
|
#include "group.hpp"
|
|
|
|
namespace tc {
|
|
Cosets solve(const Group &group, const std::vector<Gen> &sub_gens, const Coset &bound = UNBOUNDED);
|
|
}
|