CoxIter 1.3
CoxIter - Computing invariants of hyperbolic Coxeter groups
Loading...
Searching...
No Matches
number_template.h
Go to the documentation of this file.
1/*
2Copyright (C) 2013, 2014
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
30#ifndef __NUMBER_TEMPLATE_H__
31#define __NUMBER_TEMPLATE_H__
32
33#include <iostream>
34
35using namespace std;
36
38public:
39 bool isZero;
41 bool isOne;
42 bool isInt;
43
44public:
45 virtual bool operator==(Number_template const &) const;
46 virtual bool operator!=(Number_template const &) const;
47
48 virtual Number_template operator+(Number_template const &n) const;
50
51 virtual Number_template operator-(Number_template const &n) const;
53
54 virtual Number_template operator*(Number_template const &n) const;
56
57 virtual Number_template operator/(Number_template const &n) const;
59
60 virtual void print(ostream &) const;
61};
62
63ostream &operator<<(ostream &, Number_template const &);
64
65#endif
Definition number_template.h:37
virtual void print(ostream &) const
Definition number_template.cpp:71
virtual Number_template & operator*=(Number_template const &n)
Definition number_template.cpp:59
virtual Number_template operator*(Number_template const &n) const
Definition number_template.cpp:55
virtual bool operator==(Number_template const &) const
Definition number_template.cpp:31
virtual Number_template operator/(Number_template const &n) const
Definition number_template.cpp:63
bool isOne
Definition number_template.h:41
bool isMinusOne
Definition number_template.h:40
virtual Number_template & operator-=(Number_template const &n)
Definition number_template.cpp:51
virtual bool operator!=(Number_template const &) const
Definition number_template.cpp:35
virtual Number_template operator-(Number_template const &n) const
Definition number_template.cpp:47
bool isInt
Definition number_template.h:42
virtual Number_template operator+(Number_template const &n) const
Definition number_template.cpp:39
virtual Number_template & operator+=(Number_template const &n)
Definition number_template.cpp:43
bool isZero
Definition number_template.h:39
virtual Number_template & operator/=(Number_template const &n)
Definition number_template.cpp:67
ostream & operator<<(ostream &, Number_template const &)