CoxIter 1.3
CoxIter - Computing invariants of hyperbolic Coxeter groups
Loading...
Searching...
No Matches
tests.h
Go to the documentation of this file.
1/*
2Copyright (C) 2013, 2014, 2015, 2016, 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
23#ifndef __TESTS_H__
24#define __TESTS_H__
25
26#include "../arithmeticity.h"
27#include "../coxiter.h"
28#include "../growthrate.h"
29#include "../lib/numbers/mpz_rational.h"
30#include "../lib/regexp.h"
31#include "../signature.h"
32
33#include <chrono>
34#include <fstream>
35#include <iomanip>
36#include <iostream>
37#include <map>
38#include <omp.h>
39#include <string>
40#include <vector>
41
42using namespace std;
43
52struct Test {
53 string filename;
54
55 bool testEuler;
57
59 vector<unsigned int> fVector;
60
62 bool isCompact;
66
68 vector<mpz_class>
71 vector<unsigned int>
74 string growthRate;
75};
76
80class Tests {
81private:
82 string error;
84 vector<Test> tests;
85
86 ofstream of;
87
88 map<string, array<unsigned int, 2>>
90 map<string, string> testDescription;
91 unsigned int testsUnknownErrors;
92
93public:
94 Tests();
95
103 bool readGraphsFile(string inputFilename);
104
109 bool runTests();
110
111 string get_error() const;
112 vector<Test> get_tests() const;
113 unsigned int get_testsCount() const;
114
115private:
116 bool runTests_computations(const unsigned int &testIndex, CoxIter *ci);
117 void runTests_arithmeticity(const unsigned int &testIndex, CoxIter *ci);
118 void runTests_cocompactness_cofiniteness(const unsigned int &testIndex,
119 CoxIter *ci);
120 void runTests_growth(const unsigned int &testIndex, CoxIter *ci);
121 void runTests_signature(const unsigned int &testIndex, CoxIter *ci,
122 const unsigned int &dim);
123 void runTests_euler(const unsigned int &testIndex, CoxIter *ci);
124 void runTests_fVector(const unsigned int &testIndex, CoxIter *ci);
125
126 void runTestsError(const unsigned int &testIndex, const string &test,
127 const string &expected, const string &computed);
128
129 void runTests_init();
131
132 string strIntToString(const int &i);
133};
134
135#endif
Main class for the work.
Definition coxiter.h:74
Definition mpz_rational.h:49
Class to perform the tests.
Definition tests.h:80
void runTests_cocompactness_cofiniteness(const unsigned int &testIndex, CoxIter *ci)
Definition tests.cpp:525
map< string, string > testDescription
For each test, description.
Definition tests.h:90
void runTests_signature(const unsigned int &testIndex, CoxIter *ci, const unsigned int &dim)
Definition tests.cpp:455
unsigned int testsUnknownErrors
Number of other errors.
Definition tests.h:91
ofstream of
Output to file.
Definition tests.h:86
string inputFilename
File which contains the tests.
Definition tests.h:83
void runTests_fVector(const unsigned int &testIndex, CoxIter *ci)
Definition tests.cpp:589
Tests()
Definition tests.cpp:25
void runTestsError(const unsigned int &testIndex, const string &test, const string &expected, const string &computed)
Definition tests.cpp:615
void runTests_euler(const unsigned int &testIndex, CoxIter *ci)
Definition tests.cpp:566
void runTests_init()
Definition tests.cpp:314
unsigned int get_testsCount() const
Definition tests.cpp:310
bool runTests()
Perform the tests.
Definition tests.cpp:211
void runTests_growth(const unsigned int &testIndex, CoxIter *ci)
Definition tests.cpp:371
bool runTests_computations(const unsigned int &testIndex, CoxIter *ci)
Definition tests.cpp:351
vector< Test > get_tests() const
Definition tests.cpp:308
string error
Eventually, error code.
Definition tests.h:82
void runTests_arithmeticity(const unsigned int &testIndex, CoxIter *ci)
Definition tests.cpp:506
string get_error() const
Definition tests.cpp:312
vector< Test > tests
Tests toi be performed.
Definition tests.h:84
bool readGraphsFile(string inputFilename)
Read the graph which contains the tests.
Definition tests.cpp:27
void runTests_displayInfo()
Definition tests.cpp:631
map< string, array< unsigned int, 2 > > testsSucceded
For each test, number of success, failure.
Definition tests.h:89
string strIntToString(const int &i)
[*, 0, 1] => "?", "no", "yes"
Definition tests.cpp:622
Contains information to perform a test.
Definition tests.h:52
bool testCompacity
True if we test the cocompacity.
Definition tests.h:61
bool testArithmeticity
True if we test the arithmeticity.
Definition tests.h:64
vector< unsigned int > fVector
Theoretical value.
Definition tests.h:59
bool isFiniteVolume
True if finite covolume.
Definition tests.h:63
bool testGrowthSeries
Definition tests.h:67
MPZ_rational brResult
Theoretical Euler characteristic.
Definition tests.h:56
string filename
Path to the .coxiter file.
Definition tests.h:53
bool isArithmetic
True if arithmetic.
Definition tests.h:65
bool testFVector
If we have to check the f-vector.
Definition tests.h:58
vector< unsigned int > growthSeries_cyclotomicNumerator
Definition tests.h:72
string growthRate
Empty or the growth rate.
Definition tests.h:74
bool isCompact
True if the group is cocompact, false otherwise.
Definition tests.h:62
vector< mpz_class > growthSeries_polynomialDenominator
Definition tests.h:69
bool testEuler
If we have to check the Euler characteristic.
Definition tests.h:55