You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5.9 KiB
5.9 KiB
命令行参数
- 输入的编码可省略后面的
0
'code' will automatically fill '0' to 9 bits
- 使用
%
可自动生成文件名
use '%' to automatically generate 'file_name'
eg: ./engine --cal 1A9BF0C00 %
File will save at '1A9BF0C00.txt'
- show命令:根据编码输出实际布局样式
--show <code> [square_width]
Purpose: Visualize the <code>
eg: ./engine --show 1A9BF0C00
./engine --show 1A9BF0C00 5
- cal命令:计算输入布局的最少步解法
--cal <code> [file_name]
Purpose: Find the minimum step solution of <code>
eg: ./engine --cal 1A9BF0C00
./engine --cal 1A9BF0C00 demo.txt
- cal-target命令:计算两布局之间的最短路径
--cal-target <code> <target> [file_name]
Purpose: Find the shortest path from <code> to <target>
eg: ./engine --cal-target 4FEA13400 43EA73400
./engine --cal-target 4FEA13400 43EA73400 demo.txt
- cal-path命令:计算起始布局到最少步解的所有路径
--cal-path <code> <file_name>
Purpose: Find all of the minimum step solution path of <code>
eg: ./engine --cal-path 4FEA13400 demo.txt
- cal-solution-path命令:计算起始布局到全部解的所有路径
--cal-solution-path <code> <file_name>
Purpose: Find all of the solution path of <code>
eg: ./engine --cal-solution-path 1A9BF0C00 demo.txt
- cal-farthest-path命令:计算起始布局到最远布局的所有路径
--cal-farthest-path <code> <file_name>
Purpose: Find all of the farthest path of <code>
eg: ./engine --cal-farthest-path 4FEA13400 demo.txt
- cal-target-path命令:计算起始布局到指定布局的所有路径
--cal-target-path <code> <target_1> ... <target_n> <file_name>
Purpose: Find all of the shortest path from <code> to <target_1>...<target_n>
eg: ./engine --cal-target-path 1A9BF0C00 DAAF4CC00 AE2F2B400 demo.txt
- group命令:计算起始布局的所有衍生情况,即计算其所在群的全部元素
--group <code> [file_name]
Purpose: Find all elements of the group where <code> located
eg: ./engine --group 4FEA13400
./engine --group 4FEA13400 demo.txt
- group-path命令:计算起始布局的所有衍生情况及全部可能的路径
--group-path <code> <file_name>
Purpose: Find all of the path in the group where <code> located
eg: ./engine --group-path 1A9BF0C00 demo.txt
- analy命令:分析布局的具体参数,包括层级结构,层间链接,解与最少步解,最远布局等
--analy <code> [file_name]
Purpose: Detailed analysis of the <code>
eg: ./engine --analy 1A9BF0C00
./engine --analy 1A9BF0C00 demo.txt
- analy-quiet命令:同analy命令,但不输出计算过程
--analy-quiet <code> <file_name>
Purpose: The same function as --analy, but doesn't show the specific process
eg: ./engine --analy-quiet 1A9BF0C00 demo.txt
- analy-group命令:分析
code
衍生出的群中所有元素的具体参数,并输出到最远布局信息
和解的信息
两张csv表格中
--analy-group <code> <file_name_farthest> <file_name_solution>
<file_name_farthest>: As the output file of "farthest"
<file_name_solution>: As the output file of "solution"
Purpose: Analyze the whole group where <code> located
eg: ./engine --analy-group 1A9BF0C00 farthest.csv solution.csv
- analy-group-integral命令:同analy-group命令,但
解的信息
中将会输出全部解的编码及步数
--analy-group-integral <code> <file_name_farthest> <file_name_farthest>
Purpose: The same function as --analy-group, but all solution case will be output
eg: ./engine --analy-group-integral 1A9BF0C00 farthest.csv solution.csv
- analy-multi-group命令:多群组同时分析,相当于多次执行analy-group命令,结果合并输出到
最远布局信息
和解的信息
两张csv表格中
--analy-multi-group <input_file_name> <file_name_farthest> <file_name_farthest>
<input_file_name>: As the input file of seeds
<file_name_farthest>: As the output file of "farthest"
<file_name_farthest>: As the output file of "solution"
Purpose: Analyze the whole group where each seed located
eg: ./engine --analy-multi-group 5-4-0.txt farthest.csv solution.csv
- analy-multi-group-integral命令:同analy-multi-group命令,但
解的信息
中将会输出全部解的编码及步数
--analy-multi-group-integral <input_file_name> <file_name_farthest> <file_name_farthest>
Purpose: The same function as --analy-multi-group, but all solution case will be output
eg: ./engine --analy-multi-group-integral 5-4-0.txt farthest.csv solution.csv
- all命令:找到所有可能的布局,同时得到其分类情况及群组关系,计算结果会输出到All_Case.txt(所有布局的编码),main.csv(所有布局的编码及其分类),*-*-*.txt(各群组的第一个子布局集合)
--all
Purpose: Find all the cases of klotski with detail
eg: ./engine --all
- all-code命令:简化版的all命令,仅输出全部布局的编码
--all-code <file_name>
Purpose: Find all the code of klotski
eg: ./engine --all-code All_Case.txt
- help命令:显示所有命令的使用方法
--help
Purpose: Display instructions for use
eg: ./engine --help
编译
-
Windows下,要求计算机有mingw环境或其他C/C++编译器
-
Linux下,要求计算机有gcc编译器
-
Android下,可以在termux中安装clang编译器
使用make进行编译
cd ./scr/engine
make
使用g++编译
g++ -O3 ./src/engine/*.cpp -o ./engine