├── COPYING ├── README.md ├── index.html ├── main.js ├── main.worker.js ├── play.html ├── play.js ├── src ├── ai.js ├── genetic.js ├── neural.js └── ttt.js ├── test.html └── test.js /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/main.js -------------------------------------------------------------------------------- /main.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/main.worker.js -------------------------------------------------------------------------------- /play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/play.html -------------------------------------------------------------------------------- /play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/play.js -------------------------------------------------------------------------------- /src/ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/src/ai.js -------------------------------------------------------------------------------- /src/genetic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/src/genetic.js -------------------------------------------------------------------------------- /src/neural.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/src/neural.js -------------------------------------------------------------------------------- /src/ttt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/src/ttt.js -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/test.html -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tic_tac_toe_neural_network-LIVE/HEAD/test.js --------------------------------------------------------------------------------