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

1035287 views
1
//
2
// randomize_complex.h
3
// Bistellar
4
//
5
// Created by Alexander Thumm on 19.10.11.
6
// Copyright 2011 -. All rights reserved.
7
//
8
9
#ifndef Bistellar_randomize_complex_h
10
#define Bistellar_randomize_complex_h
11
12
#include "movable_complex.h"
13
#include <vector>
14
15
void randomize_complex(MovableComplex & complex, const std::vector< unsigned int > & allowedMoves, unsigned int rounds);
16
17
#endif
18
19