Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

563551 views
1
/*
2
* Normaliz
3
* Copyright (C) 2007-2014 Winfried Bruns, Bogdan Ichim, Christof Soeger
4
* This program is free software: you can redistribute it and/or modify
5
* it under the terms of the GNU General Public License as published by
6
* the Free Software Foundation, either version 3 of the License, or
7
* (at your option) any later version.
8
*
9
* This program is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License
15
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16
*
17
*/
18
19
//---------------------------------------------------------------------------
20
#ifndef NORMALIZ_H
21
#define NORMALIZ_H
22
//---------------------------------------------------------------------------
23
24
#ifdef _OPENMP
25
#include <omp.h>
26
#endif
27
28
#include <fstream>
29
#include <iostream>
30
#include <string>
31
#include <vector>
32
#include "libnormaliz/libnormaliz.h"
33
#include "libnormaliz/cone_property.h"
34
35
36
void printHeader();
37
void printCopying();
38
void printVersion();
39
40
/**
41
* Prints help text
42
* @param command Name of the executable
43
*/
44
void printHelp(char* command);
45
46
int main(int argc, char* argv[]);
47
48
/*template<typename Integer>
49
int process_data(string& output_name, libnormaliz::ConeProperties to_compute, bool write_extra_files, bool write_all_files, bool verbose);
50
*/
51
52
//---------------------------------------------------------------------------
53
#endif
54
//---------------------------------------------------------------------------
55
56