Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
This module represents group presentation and its sub-types.
Documentation
This is a data type of GR
generators.
A_Y
is a generators witch obtain from alphabet letters Y
of S-machine.
A_K
is a generators witch forms the hubRelation
.
A_R
is a generators witch obtain from rules SRule
of S-machine.
A_Q
is a generators witch obtain from states State
of S-machine.
This is a data type of symbols in GrRelation
.
Symbols can represent generators A
and its invertions.
SmbA
represents generators.
SmbA'
represents invertions of generators.
data GrRelation Source #
This is a data type of GR
relations.
Relation
represents relation beetwen right and left symbols SmbR
.
For example, relation ab=ba will coded like
>>>
Relation ([a, b], [b, a])
where a, b are SmbR
Relator
is relation in witch one part is identity.
For example, ab=1 is
>>>
Relator [a,b]
Instances
Eq GrRelation Source # | |
Defined in GRType (==) :: GrRelation -> GrRelation -> Bool # (/=) :: GrRelation -> GrRelation -> Bool # | |
Ord GrRelation Source # | |
Defined in GRType compare :: GrRelation -> GrRelation -> Ordering # (<) :: GrRelation -> GrRelation -> Bool # (<=) :: GrRelation -> GrRelation -> Bool # (>) :: GrRelation -> GrRelation -> Bool # (>=) :: GrRelation -> GrRelation -> Bool # max :: GrRelation -> GrRelation -> GrRelation # min :: GrRelation -> GrRelation -> GrRelation # | |
Show GrRelation Source # | |
Defined in GRType showsPrec :: Int -> GrRelation -> ShowS # show :: GrRelation -> String # showList :: [GrRelation] -> ShowS # |