File size: 13,235 Bytes
079c32c |
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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
import Board from '../board';
import { vct, cache_hits } from '../minmax';
import { FIVE, FOUR, performance } from '../eval';
describe('minmax', () => {
test('test 连五胜', () => {
const board = new Board(6);
// 1 2 0 0 0 0
// 0 1 2 0 0 0
// 0 0 1 2 0 0
// 0 0 0 1 2 0
// 0 0 0 0 0 0
// 0 0 0 0 0 0
const steps = [[0, 0], [0, 1], [1, 1], [1, 2], [2, 2], [2, 3], [3, 3], [3, 4]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
const score = vct(board, 1, 4);
expect(score[0]).toBe(FIVE);
console.log('minmax score1', score);
console.log('cache: total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
});
test('test 冲四活三胜利', () => {
const board = new Board(9);
// 0 0 0 0 0 0 0 0 0
// 0 0 0 0 0 0 0 0 0
// 0 0 0 0 0 0 0 0 0
// 2 1 1 1 0 0 0 0 0
// 0 0 0 1 0 0 0 0 0
// 0 0 1 0 0 0 0 0 0
// 0 0 2 2 2 0 0 0 0
// 0 0 2 0 0 0 0 0 0
// 0 0 0 0 0 0 0 0 0
const steps = [[3, 1], [3, 0], [3, 2], [6, 2], [3, 3], [6, 3], [4, 3], [6, 4], [5, 2], [7, 2]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
const score = vct(board, 1, 10);
console.log('minmax score2', score);
console.log('cache: total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
expect(score[0]).toBe(FIVE);
});
test('test 开局', () => {
const board = new Board(10);
// 0 0 0 0 0 0 0 0 0 0
// 0 0 0 0 0 0 0 0 0 0
// 0 0 0 0 0 0 0 0 0 0
// 0 0 0 0 0 0 0 0 0 0
// 0 0 0 0 1 1 0 0 0 0
// 0 0 0 2 2 1 0 0 0 0
// 0 0 0 0 2 0 0 0 0 0
// 0 0 0 0 0 0 0 0 0 0
// 0 0 0 0 0 0 0 0 0 0
// 0 0 0 0 0 0 0 0 0 0
const steps = [[4, 4], [5, 3], [4, 5], [5, 4], [5, 5], [6, 4]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
const score = vct(board, 1, 8);
expect(score[0]).toBeLessThan(FOUR);
console.log('minmax score3', score)
console.log('cache: total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
});
test('test 从零开局', () => {
const board = new Board(9);
const score = vct(board, 1, 8);
expect(score[0]).toBeLessThan(FOUR);
console.log('minmax score4', score)
console.log('cache: total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
});
test('test 连续冲四活三胜', () => {
const board = new Board(15);
const steps = [[7, 7], [8, 6], [7, 5], [7, 6], [6, 6], [5, 5], [6, 7], [5, 7], [5, 6], [7, 8], [6, 4], [6, 5], [8, 7], [9, 7], [3, 4], [4, 5], [3, 5], [4, 4], [4, 3], [9, 6], [3, 6], [3, 3], [5, 2], [2, 5], [3, 7], [3, 8], [4, 6], [2, 6], [6, 1], [7, 0], [2, 4], [5, 9], [0, 2], [1, 3], [9, 8], [2, 8], [6, 2], [6, 9], [4, 9], [9, 9], [6, 3], [6, 0]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
console.log(board.display());
const score = vct(board, -1, 8);
console.log('minmax score5', score)
console.log('cache: search', cache_hits.search, ', total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
expect(score[0]).toEqual(FIVE);
});
test('test 防守连续冲四活三', () => {
const board = new Board(15);
const steps = [[7, 7], [8, 6], [7, 5], [7, 6], [6, 6], [5, 5], [6, 7], [5, 7], [5, 6], [7, 8], [6, 4], [6, 5], [8, 7], [9, 7], [3, 4], [4, 5], [3, 5], [4, 4], [4, 3], [9, 6], [3, 6], [3, 3], [5, 2], [2, 5], [3, 7], [3, 8], [4, 6], [2, 6], [6, 1], [7, 0], [2, 4], [5, 9], [0, 2], [1, 3], [9, 8], [2, 8], [6, 2], [6, 9], [4, 9], [9, 9], [6, 3], [6, 0]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
console.log(board.display());
const score = vct(board, 1, 12);
console.log('##防守连续冲四活三')
console.log('minmax score', score)
console.log('cache: search', cache_hits.search, ', total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
expect(score[0]).toBeLessThan(FIVE);
});
test('test 无杀棋', () => {
const board = new Board(15);
const steps = [[7, 7], [8, 6], [8, 8], [6, 6], [7, 8], [6, 8], [6, 7], [8, 7], [5, 6], [8, 9]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
const score = vct(board, 1, 10);
console.log('minmax score6', score)
console.log('cache: search', cache_hits.search, ', total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
expect(score[0]).toBeLessThan(FIVE);
});
test('test 算对面杀棋', () => {
let board = new Board(15);
const steps = [[7, 7], [6, 7], [8, 6], [6, 6], [6, 8], [5, 9], [9, 5], [10, 4], [9, 7], [6, 4], [6, 5], [8, 5], [10, 6], [7, 6], [9, 4], [9, 6], [11, 7], [8, 4], [12, 8], [13, 9], [10, 8], [5, 8], [4, 9], [7, 5], [5, 7], [10, 2], [9, 3], [10, 3], [10, 1], [10, 7], [7, 4]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
console.log(board.display());
const score = vct(board, 1, 10);
console.log('minmax score7', score)
console.log('cache: search', cache_hits.search, ', total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
expect(score[0]).toEqual(FIVE);
});
test('test 无杀棋2', () => {
const board = new Board(15);
const steps = [[7, 7], [8, 6], [7, 6], [7, 5], [9, 7], [8, 7], [8, 5], [9, 4], [8, 8], [7, 9], [6, 6], [5, 5], [10, 10], [9, 9], [5, 8], [6, 7], [6, 9], [8, 4], [4, 7], [7, 10], [3, 6], [2, 5], [6, 4], [9, 3], [10, 2], [10, 5], [11, 4], [10, 3], [8, 3], [8, 9], [4, 6], [5, 6], [7, 8], [6, 8], [10, 9], [11, 6], [9, 5], [12, 7], [13, 8], [12, 5], [12, 6], [9, 11], [8, 10], [10, 7], [9, 8], [14, 6]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
const score = vct(board, 1, 14);
console.log('minmax score8', score)
console.log('cache: search', cache_hits.search, ', total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
expect(score[0]).toBeLessThan(FIVE);
});
test('test 无杀棋3', () => {
const board = new Board(15);
const steps = [[7, 7], [8, 6], [6, 6], [8, 8], [7, 5], [7, 6], [8, 7], [6, 7], [8, 5], [9, 7], [9, 5], [10, 5]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
const score = vct(board, 1, 10);
console.log('minmax score8', score)
console.log('cache: search', cache_hits.search, ', total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
expect(score[0]).toBeLessThan(FIVE);
});
test('test 无杀棋4', () => {
const board = new Board(15);
const steps = [[7, 7], [6, 6], [6, 8], [8, 6], [5, 7], [5, 9], [7, 9], [4, 6]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
const score = vct(board, 1, 10);
console.log('minmax score9', score)
console.log('cache: search', cache_hits.search, ', total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
expect(score[0]).toBeLessThan(FIVE);
});
test('test 防守', () => {
const board = new Board(15);
const steps = [[7, 6], [7, 5], [8, 5], [8, 6], [9, 4], [6, 7], [10, 3], [11, 2], [10, 5], [8, 3], [11, 4], [10, 4], [11, 6], [7, 7], [12, 7], [13, 8], [9, 5]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
const score = vct(board, -1, 10);
console.log('#####test 防守#####')
console.log(board.display());
console.log('minmax score', score)
console.log('cache: search', cache_hits.search, ', total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
expect(score[0]).toBe(-FIVE);
});
test('test 无杀棋5', () => {
const board = new Board(15);
const steps = [[7, 7], [8, 6], [9, 6], [8, 5], [8, 7], [7, 8], [9, 7], [10, 7], [8, 8], [9, 9], [6, 7], [5, 7], [9, 4], [9, 5], [10, 5], [11, 4], [6, 6], [10, 10], [5, 5], [4, 4], [6, 4], [6, 5], [7, 2], [8, 3], [10, 6], [7, 9], [8, 4], [7, 4]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
const score = vct(board, 1, 10);
console.log('##无杀棋5')
console.log('minmax score', score)
console.log('cache: search', cache_hits.search, ', total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
expect(score[0]).toBeLessThan(FIVE);
});
test('test 有杀棋6', () => {
const board = new Board(15);
const steps = [[7, 7], [8, 6], [9, 6], [9, 5], [7, 5], [6, 6], [7, 6], [7, 4], [8, 7], [7, 8], [6, 7], [5, 7], [10, 7], [9, 7], [10, 9], [9, 8], [11, 8], [12, 9], [5, 8], [4, 9], [9, 4], [8, 5], [12, 7], [9, 10]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
const score = vct(board, 1, 12);
console.log('##有杀棋6')
console.log('minmax score', score)
console.log('cache: search', cache_hits.search, ', total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
expect(score[0]).toBe(FIVE);
});
test('test 无杀棋7', () => {
/*
- - - - - - - - - - - - - - -
- - - - - - - - - - - - - - -
- - - - - - - - - - - - - - -
- - - - - - - - - - - - - - -
- - - - - - - - - - - - - - -
- - - - - - O O X - - - - - -
- - - - - O X X O - - - - - -
- - - - O X O O X O O - - - -
- - - X X - X - X O X - - - -
- - - X - - - - - - - - - - -
- - O - - - - - - - - - - - -
- - - - - - - - - - - - - - -
- - - - - - - - - - - - - - -
- - - - - - - - - - - - - - -
- - - - - - - - - - - - - - -
*/
const board = new Board(15);
const steps = [[7, 7], [6, 6], [5, 6], [6, 7], [6, 5], [7, 5], [5, 7], [8, 4], [6, 8], [5, 8], [7, 6], [8, 8], [7, 9], [8, 10], [7, 10], [7, 8], [8, 9], [9, 3], [10, 2], [8, 6], [7, 4], [8, 3]];
for (let i = 0; i < steps.length; i++) {
const [x, y] = steps[i];
board.put(x, y);
}
const score = vct(board, 1, 12);
console.log('##无杀棋7')
console.log(board.display());
console.log('minmax score', score)
console.log('cache: search', cache_hits.search, ', total ', cache_hits.total, 'hit', cache_hits.hit, 'hit rate', cache_hits.hit / cache_hits.total)
console.log('evaluateTime:', board.evaluateTime / 1000)
console.log('update point time', performance.updateTime);
console.log('get point time', performance.getPointsTime);
expect(score[0]).toBeLessThan(FIVE);
});
});
|