-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRotationsGroup.cs
More file actions
37 lines (35 loc) · 1022 Bytes
/
RotationsGroup.cs
File metadata and controls
37 lines (35 loc) · 1022 Bytes
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
using System.Collections.Generic;
using DotNetTransformer.Extensions;
using DotNetTransformer.Math.Permutation;
namespace DotNetTransformer.Math.Transform {
internal sealed class RotationsGroup<T, P> : FlipRotateGroup<T, P>
where T : IFlipRotate<T, P>, new()
where P : IPermutation<P>, new()
{
public RotationsGroup(byte dimensions, Constructor<T, P, int> ctor) : base(dimensions, ctor) { }
public override SetType Type { get { return SetType.Rotations; } }
public override long Count {
get {
long c = base.Count;
return c - (c >> 1);
}
}
public override bool Contains(T item) {
return base.Contains(item) && item.IsRotation;
}
public override IEnumerator<T> GetEnumerator() {
int c = 1 << _dim;
P i = new P();
foreach(P p in i.GetRange<P>(i, _dim)) {
int s = p.SwapsCount;
for(int v = 0; v < c; ++v)
if(IsRotational(s, v))
yield return _ctor(p, v);
}
}
public override int GetHashCode() {
long c = Count;
return (int)(c >> 32 ^ c);
}
}
}