use of common.datastore.blocks.LongPieces in project solution-finder by knewjade.
the class HoldBreakEnumeratePiecesTest method enumerate1.
@Test
void enumerate1() throws Exception {
PatternGenerator generator = new LoadedPatternGenerator("*p7");
HoldBreakEnumeratePieces core = new HoldBreakEnumeratePieces(generator, 3);
Set<LongPieces> pieces = core.enumerate();
assertThat(pieces).hasSize(210);
assertThat(core.getCounter()).isEqualTo(5040);
}
use of common.datastore.blocks.LongPieces in project solution-finder by knewjade.
the class HoldBreakEnumeratePiecesTest method enumerateJustRandom.
@Test
void enumerateJustRandom() throws Exception {
Randoms randoms = new Randoms();
for (int size = 3; size <= 15; size++) {
List<Piece> blocks = randoms.blocks(size);
String pattern = blocks.stream().map(Piece::getName).collect(Collectors.joining(","));
PatternGenerator blocksGenerator = new LoadedPatternGenerator(pattern);
HoldBreakEnumeratePieces core = new HoldBreakEnumeratePieces(blocksGenerator, size);
Set<LongPieces> pieces = core.enumerate();
for (int count = 0; count < 10000; count++) {
ArrayList<Piece> sample = new ArrayList<>();
int holdIndex = 0;
for (int index = 1; index < size; index++) {
if (randoms.nextBoolean(0.3)) {
// そのまま追加
sample.add(blocks.get(index));
} else {
// ホールドを追加
sample.add(blocks.get(holdIndex));
holdIndex = index;
}
}
// ホールドを追加
sample.add(blocks.get(holdIndex));
assertThat(new LongPieces(sample)).isIn(pieces);
}
}
}
use of common.datastore.blocks.LongPieces in project solution-finder by knewjade.
the class HoldBreakEnumeratePiecesTest method enumerate2.
@Test
void enumerate2() throws Exception {
PatternGenerator generator = new LoadedPatternGenerator("*p7");
HoldBreakEnumeratePieces core = new HoldBreakEnumeratePieces(generator, 4);
Set<LongPieces> pieces = core.enumerate();
assertThat(pieces).hasSize(840);
assertThat(core.getCounter()).isEqualTo(5040);
}
use of common.datastore.blocks.LongPieces in project solution-finder by knewjade.
the class NormalEnumeratePiecesTest method enumerateHoldJust.
@Test
void enumerateHoldJust() throws Exception {
PatternGenerator generator = new LoadedPatternGenerator("*p3");
NormalEnumeratePieces core = new NormalEnumeratePieces(generator, 3, true);
Set<LongPieces> pieces = core.enumerate();
assertThat(pieces).hasSize(210);
assertThat(core.getCounter()).isEqualTo(210);
}
use of common.datastore.blocks.LongPieces in project solution-finder by knewjade.
the class NormalEnumeratePiecesTest method enumerateHoldOver3.
@Test
void enumerateHoldOver3() throws Exception {
PatternGenerator generator = new LoadedPatternGenerator("I, *p7");
NormalEnumeratePieces core = new NormalEnumeratePieces(generator, 4, true);
Set<LongPieces> pieces = core.enumerate();
assertThat(pieces).hasSize(840);
assertThat(core.getCounter()).isEqualTo(5040);
}
Aggregations