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#ifndef CONE_HELPER_H_24#define CONE_HELPER_H_2526#include <vector>27#include "libQnormaliz/Qgeneral.h"2829namespace libQnormaliz {30using std::vector;3132// determines the maximal subsets in a vector of subsets given by their indicator vectors33// result returned in is_max_subset -- must be initialized outside34// only set to false in this routine35// if a set occurs more than once, only the last instance is recognized as maximal36void maximal_subsets(const vector<vector<bool> >& ind, vector<bool>& is_max_subset);3738} //end namespace libQnormaliz3940#endif /* CONE_HELPER_H_ */414243