Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/modular/arithgroup/sl2z.cpp
4036 views
1
//****************************************************************************
2
// Copyright (C) 2011 Hartmut Monien <[email protected]>
3
//
4
// Distributed under the terms of the GNU General Public License (GPL)
5
//
6
// This code is distributed in the hope that it will be useful,
7
// but WITHOUT ANY WARRANTY; without even the implied warranty of
8
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9
// General Public License for more details.
10
//
11
// The full text of the GPL is available at:
12
//
13
// http://www.gnu.org/licenses/
14
//****************************************************************************
15
#include "sl2z.hpp"
16
17
const SL2Z SL2Z::S(0, -1, 1, 0);
18
const SL2Z SL2Z::U(0, 1,-1, 0);
19
const SL2Z SL2Z::R(1, -1, 0, 1);
20
const SL2Z SL2Z::T(1, 1, 0, 1);
21
const SL2Z SL2Z::E(1, 0, 0, 1);
22
23