GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
/*1* Normaliz2* Copyright (C) 2007-2014 Winfried Bruns, Bogdan Ichim, Christof Soeger3* This program is free software: you can redistribute it and/or modify4* it under the terms of the GNU General Public License as published by5* the Free Software Foundation, either version 3 of the License, or6* (at your option) any later version.7*8* This program is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11* GNU General Public License for more details.12*13* You should have received a copy of the GNU General Public License14* along with this program. If not, see <http://www.gnu.org/licenses/>.15*16* As an exception, when this program is distributed through (i) the App Store17* by Apple Inc.; (ii) the Mac App Store by Apple Inc.; or (iii) Google Play18* by Google Inc., then that store may impose any digital rights management,19* device limits and/or redistribution restrictions that are required by its20* terms of service.21*/2223//---------------------------------------------------------------------------24#ifndef NMZ_NAUTY_HPP25#define NMZ_NAUTY_HPP26//---------------------------------------------------------------------------27#include <vector>28#include <list>29#include <iostream>30#include <string>3132namespace libnormaliz {33using std::vector;3435template<typename Integer>36vector<vector<long> > compute_automs_by_nauty(const vector<vector<Integer> >& Generators, size_t nr_special_gens,37const vector<vector<Integer> >& LinForms, const size_t nr_special_linforms,38mpz_class& group_order, BinaryMatrix<Integer>& CanType);394041} // namespace libnormaliz4243//---------------------------------------------------------------------------44#endif45//---------------------------------------------------------------------------4647