CoxIter 1.3
CoxIter - Computing invariants of hyperbolic Coxeter groups
Loading...
Searching...
No Matches
graphs.list.n.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
23#ifndef GRAPHS_LIST_N_H
24#define GRAPHS_LIST_N_H
25
26#include "graph.h"
27
28#include <algorithm>
29#include <iterator>
30#include <vector>
31
32using namespace std;
33
42private:
43 vector<Graph> graphs;
44 unsigned int verticesCount;
45
46 vector<string>
48
49public:
50 GraphsListN(unsigned int verticesCount,
51 vector<string> *ptr_map_vertices_indexToLabel);
52
65 void addGraph(vector<short unsigned int> vertices,
66 const vector<bool> &linkableVertices, const unsigned &type,
67 bool isSpherical, const short unsigned int &vertexSupp1 = 0,
68 const short unsigned int &vertexSupp2 = 0,
69 const unsigned int &dataSupp = 0);
70
77 bool addGraphsList(const GraphsListN &gln);
78
83 size_t size() const;
84
89 Graph *begin();
90
96 Graph *next(const size_t &graphIndex);
97
104 unsigned int get_verticesCount() const;
105
111 vector<Graph> get_graphs() const;
112
113public:
114 friend ostream &operator<<(ostream &, GraphsListN const &);
115};
116
117#endif // GRAPHS_LIST_N_H
This class represents one graph.
Definition graph.h:42
Liste des graphes d'une taille donnée.
Definition graphs.list.n.h:41
unsigned int get_verticesCount() const
Return the number of vertices of the graphs of the list (this->verticesCount)
Definition graphs.list.n.cpp:304
vector< Graph > get_graphs() const
Return the list of graphs.
Definition graphs.list.n.cpp:306
vector< string > * ptr_map_vertices_indexToLabel
Pointeur vers la correspondance.
Definition graphs.list.n.h:47
bool addGraphsList(const GraphsListN &gln)
Concatenate another list to the current list.
Definition graphs.list.n.cpp:294
Graph * begin()
Renvoie un pointeur vers le premier élément de la liste.
Definition graphs.list.n.cpp:36
void addGraph(vector< short unsigned int > vertices, const vector< bool > &linkableVertices, const unsigned &type, bool isSpherical, const short unsigned int &vertexSupp1=0, const short unsigned int &vertexSupp2=0, const unsigned int &dataSupp=0)
Ajoute un graphe à la liste.
Definition graphs.list.n.cpp:43
friend ostream & operator<<(ostream &, GraphsListN const &)
Definition graphs.list.n.cpp:308
Graph * next(const size_t &graphIndex)
Renvoie un pointeur vers le prochain élément.
Definition graphs.list.n.cpp:32
unsigned int verticesCount
Nombre de sommets des graphes de la liste.
Definition graphs.list.n.h:44
vector< Graph > graphs
Liste des graphes trouvés.
Definition graphs.list.n.h:43
size_t size() const
Retourne la taille de la liste de graphes.
Definition graphs.list.n.cpp:30