GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
/*1* Normaliz2* Copyright (C) 2012,2013 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* This header provide some dummy replacements of OpenMP functions. We use it25* to compile Normaliz without OpenMP.26*/2728#ifndef MY_OMP_H_29#define MY_OMP_H_3031#ifdef _OPENMP32#include <omp.h>33#else3435inline int omp_in_parallel() {36return false;37}3839inline int omp_get_level(){40return 0;41}4243inline int omp_get_active_level() {44return 0;45}4647inline int omp_get_thread_num() {48return 0;49}5051inline int omp_get_max_threads() {52return 1;53}5455inline int omp_get_ancestor_thread_num(int level) {56return 0;57}5859#endif /* ifndef _OPENMP */60#endif /* MY_OMP_H_ */616263