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*/1718//---------------------------------------------------------------------------19#ifndef NORMALIZ_H20#define NORMALIZ_H21//---------------------------------------------------------------------------2223#ifdef _OPENMP24#include <omp.h>25#endif2627#include <fstream>28#include <iostream>29#include <string>30#include <vector>31#include "libQnormaliz/libQnormaliz.h"32#include "libQnormaliz/Qcone_property.h"333435void printHeader();36void printCopying();37void printVersion();3839/**40* Prints help text41* @param command Name of the executable42*/43void printHelp(char* command);4445int main(int argc, char* argv[]);4647/*template<typename Number>48int process_data(string& output_name, libnormaliz::ConeProperties to_compute, bool write_extra_files, bool write_all_files, bool verbose);49*/5051//---------------------------------------------------------------------------52#endif53//---------------------------------------------------------------------------545556