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 GENERAL_H_24#define GENERAL_H_252627#include <iostream>28#include <assert.h>29#include <cstddef>3031#ifdef _WIN32 //for 32 and 64 bit windows32#define NMZ_MPIR //always use MPIR33#endif3435#ifdef NMZ_MPIR // use MPIR36#include <mpirxx.h>37#else // otherwise use GMP38#include <gmpxx.h>39#endif4041// in the serial version there is no need to catch-rethrow42#ifndef _OPENMP43#define NCATCH44#endif4546namespace libQnormaliz {4748typedef long long MachineNumber;4950} /* end namespace libQnormaliz */5152#include <libQnormaliz/libQnormaliz.h>53#include <libQnormaliz/Qnormaliz_exception.h>54#include <libQnormaliz/Qcone_property.h>5556#endif /* GENERAL_H_ */575859