CoxIter 1.3
CoxIter - Computing invariants of hyperbolic Coxeter groups
Loading...
Searching...
No Matches
coxiter.h
Go to the documentation of this file.
1/*
2Copyright (C) 2013-2017
3Rafael Guglielmetti, rafael.guglielmetti@unifr.ch
4*/
5
6/*
7This file is part of CoxIter.
8
9CoxIter is free software: you can redistribute it and/or modify
10it under the terms of the GNU General Public License as
11published by the Free Software Foundation, either version 3 of the
12License, or (at your option) any later version.
13
14CoxIter is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
20along with CoxIter. If not, see <http://www.gnu.org/licenses/>.
21*/
22
34#ifndef __COXITER_H__
35#define __COXITER_H__ 1
36
37#include "graphs.list.h"
39#include "graphs.product.h"
40#include "graphs.product.set.h"
41#ifndef _COMPILE_WITHOUT_REGEXP_
42#include "lib/regexp.h"
43#endif
44#include "lib/math_tools.h"
46#include "lib/polynomials.h"
47
48#include <algorithm>
49#include <cmath>
50#include <fstream>
51#include <iostream>
52#include <iterator>
53#include <map>
54#include <string>
55#include <unordered_set>
56#include <vector>
57
58#ifdef _USE_LOCAL_GMP_
59#include "gmpxx.h"
60#else
61#include <gmpxx.h>
62#endif
63
64#ifdef _OPENMP
65#include <omp.h>
66#else
67inline unsigned int omp_get_thread_num() { return 0; }
68inline unsigned int omp_get_max_threads() { return 1; }
69#endif
70
71using namespace std;
72using namespace MathTools;
73
74class CoxIter {
75private:
76 string error;
77 bool debug;
78
79 bool useOpenMP;
80
81 // -----------------------------------------------------------
82 // I/O
85
86 // -----------------------------------------------------------
87 // Redirection cout to a file
88 bool bCoutFile;
89 ofstream *outCout;
90 streambuf *sBufOld;
91
94
95 // -----------------------------------------------------------
96 // Graph
97 unsigned int verticesCount;
98 unsigned int maximalSubgraphRank;
99
100 unsigned int dimension;
104
109
122
123 vector<string> verticesToRemove;
124 vector<string> vertices;
125
126 map<string, unsigned int>
131
132 vector<vector<unsigned int>> coxeterMatrix;
133 map<unsigned int, string>
135 vector<vector<bool>> visitedEdges;
136 vector<bool> visitedVertices;
137 vector<short unsigned int> path;
138
141
144
145 // Computations relative to the infinite sequence
146 unsigned int infSeq_t0;
147 unsigned int infSeq_s0;
148 vector<unsigned int> infSeqFVectorsUnits;
149 vector<unsigned int> infSeqFVectorsPowers;
150
151 // -----------------------------------------------------------
152 // Graphs products
162 vector<vector<GraphsProductSet>> graphsProducts;
163
172 vector<vector<GraphsProductSet>> graphsProducts_canBeFiniteCovolume;
173
186 vector<map<vector<vector<short unsigned int>>, unsigned int>>
188 vector<map<vector<vector<short unsigned int>>, unsigned int>>
190
191 vector<mpz_class> factorials;
192 vector<mpz_class> powersOf2;
193
194 // ------------------------------------------------------------
195 // Results
199
201 vector<unsigned int> fVector;
203
204 vector<mpz_class>
207
208 vector<unsigned int>
216
218
219public:
223 CoxIter();
224
233 CoxIter(const vector<vector<unsigned int>> &iMatrix,
234 const unsigned int &dimension);
235
236 ~CoxIter();
237
251 bool bRunAllComputations();
252
256 void printCoxeterMatrix();
257
261 void printCoxeterGraph();
262
266 void printGramMatrix();
267
271 void printGramMatrix_GAP();
272
277
282
287
292
299#ifndef _COMPILE_WITHOUT_REGEXP_
300 bool readGraphFromFile(const string &inputFilename);
301#endif
302
310 bool writeGraphToDraw(const string &outFilenameBasis);
311
318 bool writeGraph(const string &filename);
319
326#ifndef _COMPILE_WITHOUT_REGEXP_
327 bool parseGraph(istream &streamIn);
328#endif
329
337 void exploreGraph();
338
348 void IS_computations(const string &t0, const string &s0);
349
355
362 void growthSeries();
363
369 int isGraphCocompact();
370
377
387 bool canBeFiniteCovolume();
388
395 vector<vector<short unsigned int>> canBeFiniteCovolume_complete();
396
402
407 void printGrowthSeries();
408
416 vector<map<vector<vector<short unsigned int>>, unsigned int>>
417 *graphsProductsCount);
418
425 bool isVertexValid(const string &vertexLabel) const;
426
434 unsigned int get_vertexIndex(const string &vertexLabel) const;
435
442 string get_vertexLabel(const unsigned int &vertex) const;
443
449 string get_error() const;
450
457
463 string get_eulerCaracteristicString() const;
464
471
476 int get_fVectorAlternateSum() const;
477
482 vector<unsigned int> get_fVector() const;
483
488 vector<unsigned int> get_infSeqFVectorsUnits() const;
489
494 vector<unsigned int> get_infSeqFVectorsPowers() const;
495
500 unsigned int get_verticesAtInfinityCount() const;
501
506 unsigned int get_irreducibleSphericalGraphsCount() const;
507
513 bool get_bWriteInfo() const;
514
520 bool get_debug() const;
521
527 unsigned int get_dimension() const;
528
534 bool get_dimensionGuessed() const;
535
541 int get_isCocompact();
542
549
555 int get_isArithmetic() const;
556
562 vector<vector<unsigned int>> get_coxeterMatrix() const;
563
569 unsigned int get_coxeterMatrixEntry(const unsigned int &i,
570 const unsigned int &j) const;
571
577 map<unsigned int, string> get_weights() const;
578
584 string get_CoxeterMatrixString() const;
585
591 vector<vector<string>> get_array_str_2_GramMatrix() const;
592
597 string get_gramMatrix() const;
598
603 string get_coxeterGraph() const;
604
609 string get_gramMatrix_GAP() const;
610
615 string get_gramMatrix_LaTeX() const;
616
621 string get_gramMatrix_Mathematica() const;
622
627 string get_gramMatrix_PARI() const;
628
633 string get_gramMatrixField() const;
634
639 unsigned int get_verticesCount() const;
640
645 bool get_hasDottedLine() const;
646
652
657 vector<string> get_str_map_vertices_indexToLabel() const;
658
665 void set_isArithmetic(const unsigned int &arithmetic);
666
667 void set_checkCocompactness(const bool &value);
668 void set_checkCofiniteness(const bool &value);
669 void set_debug(const bool &value);
670 void set_useOpenMP(const bool &value);
671 void set_outputFilename(const string &filename);
672 void set_sdtOutToFile(const string &filename);
673 void set_verticesToRemove(const vector<string> &verticesRemove_);
674 void set_verticesToConsider(const vector<string> &verticesToConsider);
675
682 void set_bWriteInfo(const bool &newValue);
683
688 void set_dimension(const unsigned int &dimension_);
689
691
693
694 bool get_hasSphericalGraphsOfRank(const unsigned int &rank) const;
695
696 bool get_hasEuclideanGraphsOfRank(const unsigned int &rank) const;
697
707 void get_growthSeries(vector<unsigned int> &cyclotomicNumerator,
708 vector<mpz_class> &polynomialDenominator,
709 bool &isReduced);
710
718
719 vector<mpz_class> get_growthSeries_denominator();
720
721 string get_growthSeries();
722 string get_growthSeries_raw();
723
729 const vector<vector<GraphsProductSet>> *get_ptr_graphsProducts() const;
730
736 void set_coxeterMatrix(const vector<vector<unsigned int>> &matrix);
737
738 void set_ouputMathematicalFormat(const string &format);
739
745 void map_vertices_labels_removeReference(const unsigned int &index);
746
752 void map_vertices_labels_addReference(const string &label);
753
759
765
766private:
767 CoxIter(const CoxIter &);
768
773 void initializations();
774
783 void DFS(unsigned int root, unsigned int from);
784
788 void printPath();
789
796 void addGraphsFromPath();
797
807 void AnToEn_AnToTEn(const vector<short unsigned int> &pathTemp,
808 const vector<bool> &verticesLinkable);
809
820 void AnToEn_AnToTEn(const vector<short unsigned int> &pathTemp,
821 const vector<bool> &linkableVertices,
822 const bool &isSpherical,
823 const short unsigned int &iStart);
824
835 void B3ToF4_B4ToTF4(const vector<bool> &linkableVerticesStart,
836 vector<short unsigned int> pathTemp,
837 const short unsigned int &endVertex);
838
854 vector<map<vector<vector<short unsigned int>>, unsigned int>>
855 *graphsProductsCount,
856 const bool &isSpherical, GraphsProduct &gp,
857 vector<bool> &gpNonLinkableVertices);
858
872 const bool &isSpherical, GraphsProduct &gp,
873 vector<bool> &gpNonLinkableVertices);
874
877 vector<bool> &gpNonLinkableVertices);
880 vector<bool> &gpNonLinkableVertices);
881
891 mpz_class i_orderFiniteSubgraph(const unsigned int &type,
892 const unsigned int &dataSupp);
893
900 bool isGraph_cocompact_finiteVolume_parallel(unsigned int index);
901
908 bool isGraph_cocompact_finiteVolume_sequential(unsigned int index);
909
921 const vector<vector<short unsigned int>> &product,
922 vector<unsigned int> &symbol, unsigned int &exponent) const;
923
935 const vector<vector<short unsigned int>> &product, string &symbol,
936 unsigned int &exponent) const;
937
942
947
949
963 void growthSeries_mergeTerms(vector<mpz_class> &polynomial,
964 vector<unsigned int> &symbol,
965 vector<mpz_class> tempPolynomial,
966 const vector<unsigned int> &tempSymbol,
967 mpz_class biTemp = 1);
968
969public:
970 friend ostream &operator<<(ostream &, CoxIter const &);
971};
972
973inline unsigned int linearizationMatrix_index(const unsigned int &i,
974 const unsigned int &j,
975 const unsigned int &n) {
976 return (i * (2 * n - 1 - i) / 2 + j);
977}
978
979inline unsigned int linearizationMatrix_row(const unsigned int &k,
980 const unsigned int &n) {
981 return ((2 * n + 1 - sqrtSup((2 * n + 1) * (2 * n + 1) - 8 * k)) / 2);
982}
983
984inline unsigned int linearizationMatrix_col(const unsigned int &k,
985 const unsigned int &n) {
986 unsigned int row(linearizationMatrix_row(k, n));
987 return (k - (row * (2 * n - 1 - row)) / 2);
988}
989
990#endif
Main class for the work.
Definition coxiter.h:74
void printGramMatrix_LaTeX()
Print the Gram matrix (format: LaTeX)
Definition coxiter.cpp:2938
unsigned int get_irreducibleSphericalGraphsCount() const
Return the number of irreducible spherical graphs.
Definition coxiter.cpp:3377
GraphsList * graphsList_spherical
Pointer to the list of spherical graphs.
Definition coxiter.h:142
void AnToEn_AnToTEn(const vector< short unsigned int > &pathTemp, const vector< bool > &verticesLinkable)
Definition coxiter.cpp:924
string eulerCharacteristic_computations
Definition coxiter.h:197
int get_fVectorAlternateSum() const
Return the alternating sum of the componenents of the f-vector.
Definition coxiter.cpp:3355
void canBeFiniteCovolume_complete_computeGraphsProducts(GraphsListIterator grIt, GraphsProduct &gp, vector< bool > &gpNonLinkableVertices)
Definition coxiter.cpp:2081
vector< map< vector< vector< short unsigned int > >, unsigned int > > graphsProductsCount_euclidean
Count graphs products (with their multiplicities)
Definition coxiter.h:189
void growthSeries_mergeTerms(vector< mpz_class > &polynomial, vector< unsigned int > &symbol, vector< mpz_class > tempPolynomial, const vector< unsigned int > &tempSymbol, mpz_class biTemp=1)
Definition coxiter.cpp:2174
void printGramMatrix_PARI()
Print the Gram matrix (format: PARI)
Definition coxiter.cpp:2934
void printCoxeterGraph()
Print Coxeter graph.
Definition coxiter.cpp:2891
GraphsList * get_gl_graphsList_spherical() const
Definition coxiter.cpp:3411
vector< vector< GraphsProductSet > > graphsProducts_canBeFiniteCovolume
Definition coxiter.h:172
vector< string > vertices
Vertices to be taken.
Definition coxiter.h:124
vector< vector< short unsigned int > > canBeFiniteCovolume_complete()
Check whether the group can be of finite covolume or no.
Definition coxiter.cpp:1996
bool canBeFiniteCovolume()
Check whether the group can be of finite covolume or no Remark: If true, it does not mean that the gr...
Definition coxiter.cpp:1860
bool get_hasSphericalGraphsOfRank(const unsigned int &rank) const
Definition coxiter.cpp:3419
void printCoxeterMatrix()
Print Coxeter matrix.
Definition coxiter.cpp:2855
string gramMatrixField
Field generated by the entries of the Gram matrix.
Definition coxiter.h:139
map< unsigned int, string > get_weights() const
Return the weights of the dotted lines.
Definition coxiter.cpp:3011
void exploreGraph()
Definition coxiter.cpp:539
int get_isCocompact()
Return the value of isCompact.
Definition coxiter.cpp:3381
string get_gramMatrix_GAP() const
Returns the Gram matrix (format GAP)
Definition coxiter.cpp:3294
void computeGraphsProducts_IS(GraphsListIterator grIt, const bool &isSpherical, GraphsProduct &gp, vector< bool > &gpNonLinkableVertices)
Definition coxiter.cpp:1758
const vector< vector< GraphsProductSet > > * get_ptr_graphsProducts() const
Return the list of graphs products Remark: there is absolutely no verification.
Definition coxiter.cpp:1102
void growthSeries_details()
Definition coxiter.cpp:2239
vector< vector< bool > > visitedEdges
For the DFS: traversed edges.
Definition coxiter.h:135
bool readGraphFromFile(const string &inputFilename)
Read the graph from a file.
Definition coxiter.cpp:366
string error
Error code.
Definition coxiter.h:76
bool bWriteInfo
Definition coxiter.h:83
unsigned int sphericalMaxRankFound
Maximal rank for a spherical graph.
Definition coxiter.h:101
vector< unsigned int > infSeqFVectorsUnits
(ultra)parallel hyperplane, will be conjugate
Definition coxiter.h:148
bool get_hasDottedLine() const
Does the graph have at least one dotted edge?
Definition coxiter.cpp:3405
string get_vertexLabel(const unsigned int &vertex) const
Get the label of a vertex.
Definition coxiter.cpp:2988
unsigned int get_verticesCount() const
Retourne le nombre de sommets du graphe.
Definition coxiter.cpp:3403
string get_gramMatrix_LaTeX() const
Returns the Gram matrix (format LaTeX)
Definition coxiter.cpp:3157
bool isDimensionGuessed
If the dimension was not specified but guessed.
Definition coxiter.h:103
string get_gramMatrix_Mathematica() const
Returns the Gram matrix (format Mathematica)
Definition coxiter.cpp:3203
streambuf * sBufOld
To reset the cout, at the end.
Definition coxiter.h:90
vector< unsigned int > infSeqFVectorsPowers
Components of the f-vector.
Definition coxiter.h:149
void set_dimension(const unsigned int &dimension_)
Update the member dimension.
Definition coxiter.cpp:3463
vector< vector< unsigned int > > coxeterMatrix
Coxeter matrix.
Definition coxiter.h:132
bool writeGraph(const string &filename)
Write the graph in a file (so that it can be read by CoxIter)
Definition coxiter.cpp:434
int checkCovolumeFiniteness()
Definition coxiter.cpp:1299
bool bRunAllComputations()
Do all the computations.
Definition coxiter.cpp:81
unsigned int infSeq_t0
First reflecting hyperplane.
Definition coxiter.h:146
vector< map< vector< vector< short unsigned int > >, unsigned int > > graphsProductsCount_spherical
Definition coxiter.h:187
void set_checkCocompactness(const bool &value)
Definition coxiter.cpp:3437
bool get_dimensionGuessed() const
Return true if the dimension was guessed.
Definition coxiter.cpp:3399
void printPath()
Print the path vector.
Definition coxiter.cpp:1057
bool isGrowthSeriesComputed
True if we computed the growth series.
Definition coxiter.h:108
void growthSeries_parallel()
Definition coxiter.cpp:2431
vector< vector< string > > get_array_str_2_GramMatrix() const
Return the entries of 2*G (string)
Definition coxiter.cpp:3032
vector< mpz_class > get_growthSeries_denominator()
Definition coxiter.cpp:2556
string get_gramMatrix() const
Returns the Gram matrix.
Definition coxiter.cpp:3111
vector< unsigned int > growthSeries_cyclotomicNumerator
Definition coxiter.h:209
map< unsigned int, string > weightsDotted
Weights of the dotted lines (via linearization)
Definition coxiter.h:134
vector< vector< unsigned int > > get_coxeterMatrix() const
Return the Coxeter matrix.
Definition coxiter.cpp:2999
unsigned int get_dimension() const
Return the dimension.
Definition coxiter.cpp:3397
void growthSeries_symbolExponentFromProduct(const vector< vector< short unsigned int > > &product, vector< unsigned int > &symbol, unsigned int &exponent) const
Definition coxiter.cpp:2644
int fVectorAlternateSum
Alternating sum of the components of thef-vector.
Definition coxiter.h:200
void set_verticesToRemove(const vector< string > &verticesRemove_)
Definition coxiter.cpp:3499
bool writeGraphToDraw(const string &outFilenameBasis)
Write the graph in a file for GraphViz.
Definition coxiter.cpp:490
int isFiniteCovolume
Check whether the graph is of finite covolume or not Remark: If the programm was not called with the ...
Definition coxiter.h:120
vector< string > verticesToRemove
Vertices to be removed.
Definition coxiter.h:123
bool growthSeries_isFractionReduced
Definition coxiter.h:211
int get_isArithmetic() const
Arithmetic?
Definition coxiter.cpp:3395
void IS_computations(const string &t0, const string &s0)
Definition coxiter.cpp:1703
string get_coxeterGraph() const
Returns the Coxeter graph.
Definition coxiter.cpp:3071
vector< short unsigned int > path
chemin en cours (pour le DFS)
Definition coxiter.h:137
unsigned int get_vertexIndex(const string &vertexLabel) const
Get the index of a vertex.
Definition coxiter.cpp:2977
vector< unsigned int > get_fVector() const
Return the f-vector.
Definition coxiter.cpp:3363
bool debug
If true, prints additionnal information.
Definition coxiter.h:77
string get_error() const
Retourne le code d'erreur.
Definition coxiter.cpp:3401
void printGramMatrix_GAP()
Print the Gram matrix (format: GAP)
Definition coxiter.cpp:2924
vector< unsigned int > get_infSeqFVectorsPowers() const
Definition coxiter.cpp:3369
void set_coxeterMatrix(const vector< vector< unsigned int > > &matrix)
Set the Coxeter matrix.
Definition coxiter.cpp:3468
unsigned int verticesAtInfinityCount
Number of vertices at infinity.
Definition coxiter.h:202
int isArithmetic
1 If arithmetic, 0 if non-arithmetic, -1 if don't know
Definition coxiter.h:119
void addGraphsFromPath()
Find the different type of graphs (An, Bn, Dn, En, Hn, F4) from any An.
Definition coxiter.cpp:687
unsigned int dimension
Dimension (or 0)
Definition coxiter.h:100
GraphsList * graphsList_euclidean
Pointer to the list of euclidean graphs.
Definition coxiter.h:143
string get_gramMatrix_PARI() const
Returns the Gram matrix (format PARI)
Definition coxiter.cpp:3249
void growthSeries_sequential()
Definition coxiter.cpp:2286
MPZ_rational brEulerCaracteristic
Euler characteristic.
Definition coxiter.h:196
mpz_class i_orderFiniteSubgraph(const unsigned int &type, const unsigned int &dataSupp)
Order of a connected spherical graph.
Definition coxiter.cpp:2144
bool hasDottedLine
True if the graph has a dotted line.
Definition coxiter.h:110
bool computeEulerCharacteristicFVector()
Conmpute the euler characteristic and f-vector.
Definition coxiter.cpp:2725
void set_bWriteInfo(const bool &newValue)
Set bWriteInfo.
Definition coxiter.cpp:3359
vector< mpz_class > growthSeries_polynomialDenominator
Definition coxiter.h:205
vector< unsigned int > fVector
F-vector.
Definition coxiter.h:201
void set_ouputMathematicalFormat(const string &format)
Definition coxiter.cpp:3488
bool isVertexValid(const string &vertexLabel) const
Test if a vertex exists in the graph.
Definition coxiter.cpp:2953
map< string, unsigned int > map_vertices_labelToIndex
Definition coxiter.h:127
int get_hasDottedLineWithoutWeight() const
Does the graph have dotted edges without weights?
Definition coxiter.cpp:3407
void initializations()
Une fois le nombre de sommets du graphe connu (via inputRead()), fait divers initialisations de varia...
Definition coxiter.cpp:384
vector< mpz_class > factorials
Definition coxiter.h:191
bool checkCocompactness
True if we want to check the cocompacity.
Definition coxiter.h:114
void map_vertices_labels_reinitialize()
Create labels if there with int.
Definition coxiter.cpp:480
friend ostream & operator<<(ostream &, CoxIter const &)
Definition coxiter.cpp:1255
bool checkCofiniteness
Definition coxiter.h:115
int isCocompact
Definition coxiter.h:117
int isGraphCocompact()
Check whether the graph is cocompact or not Remark: If the programm was not called with the -compacit...
Definition coxiter.cpp:1265
void map_vertices_labels_addReference(const string &label)
Add a references for a new vertex.
Definition coxiter.cpp:2970
ofstream * outCout
Flow to the file.
Definition coxiter.h:89
int get_isFiniteCovolume()
Return the value of isFiniteCovolume.
Definition coxiter.cpp:3388
void map_vertices_labels_removeReference(const unsigned int &index)
Remove the references to a vertex (for the label)
Definition coxiter.cpp:2959
bool parseGraph(istream &streamIn)
Read and parse graph from stream.
Definition coxiter.cpp:104
void set_verticesToConsider(const vector< string > &verticesToConsider)
Definition coxiter.cpp:3492
void set_useOpenMP(const bool &value)
Definition coxiter.cpp:3447
unsigned int maximalSubgraphRank
Maximal rank of a subgraph.
Definition coxiter.h:98
vector< mpz_class > powersOf2
Definition coxiter.h:192
void printGrowthSeries()
Display the growth series.
Definition coxiter.cpp:1176
bool isGramMatrixFieldKnown
True if the field was determined.
Definition coxiter.h:140
vector< string > get_str_map_vertices_indexToLabel() const
Return the label of the vertices.
Definition coxiter.cpp:2995
void printGramMatrix_Mathematica()
Print the Gram matrix (format: Mathematica)
Definition coxiter.cpp:2928
bool bCoutFile
True if we want to redirect cout to a file.
Definition coxiter.h:88
vector< vector< GraphsProductSet > > graphsProducts
Definition coxiter.h:162
int hasDottedLineWithoutWeight
Definition coxiter.h:111
string get_eulerCaracteristicString() const
return Euler characteristic
Definition coxiter.cpp:3347
string get_gramMatrixField() const
Field generated by the entries of the Gram matrix (string)
Definition coxiter.cpp:3339
~CoxIter()
Definition coxiter.cpp:67
string get_growthSeries()
Definition coxiter.cpp:1123
MPZ_rational get_brEulerCaracteristic() const
return brEulerCaracteristic
Definition coxiter.cpp:3343
string get_eulerCharacteristic_computations() const
Return the computations needed to determine Euler's characteristic.
Definition coxiter.cpp:3351
unsigned int get_verticesAtInfinityCount() const
Return the number of vertices at infinity.
Definition coxiter.cpp:3373
void canBeFiniteCovolume_computeGraphsProducts(GraphsListIterator grIt, GraphsProduct &gp, vector< bool > &gpNonLinkableVertices)
Definition coxiter.cpp:1934
string growthSeries_raw
Row series, not simplified.
Definition coxiter.h:217
unsigned int infSeq_s0
Definition coxiter.h:147
vector< bool > visitedVertices
For the DFS: traversed vertices.
Definition coxiter.h:136
void printEdgesVisitedMatrix()
Display the visited edges.
Definition coxiter.cpp:2942
GraphsList * get_gl_graphsList_euclidean() const
Definition coxiter.cpp:3415
void DFS(unsigned int root, unsigned int from)
Look for all the An starting from a given vertex.
Definition coxiter.cpp:629
unsigned int verticesCount
Number of vertices.
Definition coxiter.h:97
void computeGraphsProducts()
Compute the possible products of the irreducible graphs.
Definition coxiter.cpp:1504
vector< string > map_vertices_indexToLabel
Definition coxiter.h:129
void set_outputFilename(const string &filename)
vector< unsigned int > get_infSeqFVectorsUnits() const
Return the units of the f-vector after n-doubling.
Definition coxiter.cpp:3365
void growthSeries()
Definition coxiter.cpp:2229
bool useOpenMP
Use OpenMP.
Definition coxiter.h:79
bool isGraphExplored
Definition coxiter.h:105
void set_sdtOutToFile(const string &filename)
Definition coxiter.cpp:3453
string get_growthSeries_raw()
Definition coxiter.cpp:1106
void set_checkCofiniteness(const bool &value)
Definition coxiter.cpp:3441
string get_CoxeterMatrixString() const
Return the Coxeter matrix as a string.
Definition coxiter.cpp:3015
bool isGraphsProductsComputed
True if we computed the graphs products.
Definition coxiter.h:107
void map_vertices_labels_create()
Create labels if there is none (int --> string)
Definition coxiter.cpp:470
bool get_bWriteInfo() const
Return bWriteInfo.
Definition coxiter.cpp:3357
unsigned int get_coxeterMatrixEntry(const unsigned int &i, const unsigned int &j) const
Return the one entry of the Coxeter matrix.
Definition coxiter.cpp:3003
void set_debug(const bool &value)
Definition coxiter.cpp:3445
bool hasBoldLine
True if the graph has a bold line.
Definition coxiter.h:113
CoxIter()
Default constructor. Initialize the default values.
Definition coxiter.cpp:25
bool isGraph_cocompact_finiteVolume_sequential(unsigned int index)
Check whether the graph is cocompact or not or has finite covolume or not Called by: isGraphCocompact...
Definition coxiter.cpp:1346
unsigned int euclideanMaxRankFound
Maximal rank for an euclidean graph.
Definition coxiter.h:102
void printEuclideanGraphsProducts(vector< map< vector< vector< short unsigned int > >, unsigned int > > *graphsProductsCount)
Display the euclidean graph products found.
Definition coxiter.cpp:2824
bool get_debug() const
Return get_debug.
Definition coxiter.cpp:3361
bool isGraph_cocompact_finiteVolume_parallel(unsigned int index)
Check whether the graph is cocompact or not or has finite covolume or not Called by: isGraphCocompact...
Definition coxiter.cpp:1416
bool get_isGrowthSeriesReduced()
Return true if the fraction is reduced.
Definition coxiter.cpp:2549
void B3ToF4_B4ToTF4(const vector< bool > &linkableVerticesStart, vector< short unsigned int > pathTemp, const short unsigned int &endVertex)
Essaie de construire un F4 depuis un B3.
Definition coxiter.cpp:1018
bool get_hasEuclideanGraphsOfRank(const unsigned int &rank) const
Definition coxiter.cpp:3426
void set_isArithmetic(const unsigned int &arithmetic)
Update the member isArithmetic.
Definition coxiter.cpp:3433
CoxIter(const CoxIter &)
We do not want to do this.
void printGramMatrix()
Print the Gram matrix.
Definition coxiter.cpp:2895
string ouputMathematicalFormat
Definition coxiter.h:92
Liste des graphes.
Definition graphs.list.h:40
Permet de parcourir une liste de graphes Utilisation (pour un GraphsList *gl) GraphsListIterator ite...
Definition graphs.list.iterator.h:43
: Un produit de graphs
Definition graphs.product.h:47
Definition mpz_rational.h:49
unsigned int omp_get_max_threads()
Definition coxiter.h:68
unsigned int linearizationMatrix_row(const unsigned int &k, const unsigned int &n)
Definition coxiter.h:979
unsigned int linearizationMatrix_col(const unsigned int &k, const unsigned int &n)
Definition coxiter.h:984
unsigned int omp_get_thread_num()
Definition coxiter.h:67
unsigned int linearizationMatrix_index(const unsigned int &i, const unsigned int &j, const unsigned int &n)
Definition coxiter.h:973
Some mathematical functions.
Rational number.
Definition math_tools.cpp:25
std::enable_if< std::is_unsigned< Type >::value, Type >::type sqrtSup(Type n)
Definition math_tools.h:95
Some mathematical functions regarding polynomials.
To simplify the use of regexp.