├── .github └── workflows │ └── test.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── docs ├── README.md ├── analysis.py ├── benchmarks.json ├── benchmarks_histogram.png └── benchmarks_plot.png └── src ├── benchmarking.rs ├── lib.rs ├── mock.rs ├── tests.rs └── weights.rs /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | /target 3 | .vscode -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/docs/analysis.py -------------------------------------------------------------------------------- /docs/benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/docs/benchmarks.json -------------------------------------------------------------------------------- /docs/benchmarks_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/docs/benchmarks_histogram.png -------------------------------------------------------------------------------- /docs/benchmarks_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/docs/benchmarks_plot.png -------------------------------------------------------------------------------- /src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/src/benchmarking.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/src/mock.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/src/tests.rs -------------------------------------------------------------------------------- /src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubstrateChess/pallet-chess/HEAD/src/weights.rs --------------------------------------------------------------------------------