CoxIter 1.3
CoxIter - Computing invariants of hyperbolic Coxeter groups
Loading...
Searching...
No Matches
graphs.list.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
31#ifndef GRAPHS_LIST_H
32#define GRAPHS_LIST_H
33
34#include "graphs.list.n.h"
35
36#include <vector>
37
38using namespace std;
39
41public:
48 GraphsList(size_t maxVertices, vector<string> *ptr_map_vertices_indexToLabel);
49
69 void addGraph(const vector<short unsigned int> &vertices,
70 const vector<bool> &linkableVertices, const unsigned int &type,
71 bool isSpherical, const unsigned int &vertexSupp1 = 0,
72 const unsigned int &vertexSupp2 = 0,
73 const unsigned int &dataSupp = 0);
74
80 Graph *begin();
81
92 Graph *next(size_t &verticesCount, size_t &graphIndex);
93
94public: // Remark: this is public for read-only purpose!
95 vector<GraphsListN>
97 vector<size_t> graphsCount;
98
100 size_t maxVertices;
101
102public:
103 friend ostream &operator<<(ostream &, GraphsList const &);
104};
105
106#endif // GRAPHS_LIST_H
This class represents one graph.
Definition graph.h:42
Liste des graphes.
Definition graphs.list.h:40
Graph * next(size_t &verticesCount, size_t &graphIndex)
Retourne un pointeur sur l'élément suivant de la liste.
Definition graphs.list.cpp:78
size_t totalGraphsCount
Total number of graphs.
Definition graphs.list.h:99
vector< size_t > graphsCount
Number of graphs (by number of vertices)
Definition graphs.list.h:97
Graph * begin()
Retourne un pointeur sur le premier graphe de la liste.
Definition graphs.list.cpp:66
friend ostream & operator<<(ostream &, GraphsList const &)
Definition graphs.list.cpp:94
vector< GraphsListN > graphs
List of list of graphs (by number of vertices)
Definition graphs.list.h:96
size_t maxVertices
Maximum number of vertices in the graphs.
Definition graphs.list.h:100
void addGraph(const vector< short unsigned int > &vertices, const vector< bool > &linkableVertices, const unsigned int &type, bool isSpherical, const unsigned int &vertexSupp1=0, const unsigned int &vertexSupp2=0, const unsigned int &dataSupp=0)
Definition graphs.list.cpp:35