CoxIter 1.3
CoxIter - Computing invariants of hyperbolic Coxeter groups
Loading...
Searching...
No Matches
graphs.product.set.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 GRAPHSPRODUCTSET_H
24#define GRAPHSPRODUCTSET_H
25
36#include <iterator>
37#include <set>
38#include <string>
39
40#include "graph.h"
41#include "graphs.product.h"
42
43using namespace std;
44
46public:
47 unsigned int rank;
48 set<Graph *, GraphPtrComp>
50
51public:
54
60 vector<short unsigned int> get_vertices() const;
61
67 bool areVerticesSubsetOf(const GraphsProductSet &gp) const;
68
69 friend ostream &operator<<(ostream &o, const GraphsProductSet &gp);
70};
71
72#endif // GRAPHSPRODUCTSET_H
: Un produit de graphs
Definition graphs.product.h:47
Definition graphs.product.set.h:45
unsigned int rank
Rank of the graph.
Definition graphs.product.set.h:47
friend ostream & operator<<(ostream &o, const GraphsProductSet &gp)
Definition graphs.product.set.cpp:67
set< Graph *, GraphPtrComp > graphs
Pointeurs vers les graphes qui constituent le produit.
Definition graphs.product.set.h:49
bool areVerticesSubsetOf(const GraphsProductSet &gp) const
Test if the vertices appear in another Product.
Definition graphs.product.set.cpp:50
GraphsProductSet()
Definition graphs.product.set.cpp:25
vector< short unsigned int > get_vertices() const
Definition graphs.product.set.cpp:35