1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
# Copyright (c) 1997-2018
# Ewgenij Gawrilow, Michael Joswig (Technische Universitaet Berlin, Germany)
# http://www.polymake.org
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2, or (at your option) any
# later version: http://www.gnu.org/licenses/gpl.txt.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#-------------------------------------------------------------------------------
object Group {
# @category Symmetry
# The number of elements in the group
property ORDER : Integer;
# @category Symmetry
# The character table.
# NOTE: We do not support complex characters, but for the moment only real ones.
property CHARACTER_TABLE : Matrix<QuadraticExtension<Rational>>;
# @category Symmetry
# The sizes of the conjugacy classes
property CONJUGACY_CLASS_SIZES : Array<Int>;
#
# after these general properties,
# different actions that express representations of the group on different entities
#
# @category Symmetry
# a permutation action on integers
property PERMUTATION_ACTION : PermutationAction : multiple;
# @category Symmetry
# a permutation action on a collection of sets of integers
property SET_ACTION : PermutationAction<Set<Int>> : multiple;
# @category Symmetry
# an action on sets where only one representative for each orbit is stored
property IMPLICIT_SET_ACTION : ImplicitActionOnSets : multiple;
# @category Symmetry
# operates on indices
property INPUT_RAYS_ACTION : PermutationAction;
# @category Symmetry
# operates on indices
property RAYS_ACTION : PermutationAction;
# @category Symmetry
# operates on indices
property INEQUALITIES_ACTION : PermutationAction;
# @category Symmetry
# operates on indices
property FACETS_ACTION : PermutationAction;
# @category Symmetry
# operates on indices
property MAXIMAL_CONES_ACTION : PermutationAction;
# @category Symmetry
# operates on indices
property INPUT_CONES_ACTION : group::PermutationAction;
# @category Symmetry
# operates on indices
property FACET_NORMALS_ACTION : PermutationAction;
# @category Symmetry
# operates on indices, including the '0'-th homogeneous coordinate
property HOMOGENEOUS_COORDINATE_ACTION : PermutationAction;
# @category Symmetry
# operates on indices
property VECTOR_ACTION : PermutationAction;
# @category Symmetry
property REGULAR_REPRESENTATION : MatrixActionOnVectors<Rational>;
}
# Local Variables:
# mode: perl
# cperl-indent-level:3
# indent-tabs-mode:nil
# End:
|