GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
1// 2// reduce_complex.h 3// Bistellar 4// 5// Created by Alexander Thumm on 22.10.11. 6// Copyright 2011 -. All rights reserved. 7// 8 9#ifndef Bistellar_reduce_complex_h 10#define Bistellar_reduce_complex_h 11 12#include "movable_complex.h" 13 14void reduce_complex(MovableComplex & complex, unsigned int rounds, int heating, int relaxation); 15 16#endif 17 18