华容道高性能计算引擎
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.

50 lines
1.2 KiB

#include <stdio.h>
#include "klotski.h"
int main() {
// printf("cli boot\n");
// tmain();
// bool ret = common_code_check(0x1A9BF0C00);
// printf("result -> %d\n", ret);
uint64_t raw_code;
uint32_t short_code;
uint64_t common_code = 0x1A9BF0C00;
// short_code_enable_fast();
//
// if (!common_code_to_raw_code(common_code, &raw_code)) {
// printf("error\n");
// } else {
// printf("raw code -> %015lX\n", raw_code);
// }
//
// if (!common_code_to_short_code(common_code, &short_code)) {
// printf("error\n");
// } else {
// printf("short code -> %d\n", short_code);
// }
char common_code_str[10];
if (!common_code_to_string(common_code, common_code_str)) {
printf("error\n");
} else {
printf("string -> %s\n", common_code_str);
}
if (!common_code_to_string_shorten(common_code, common_code_str)) {
printf("error\n");
} else {
printf("string shorten -> %s\n", common_code_str);
}
if (!common_code_from_string(common_code_str, &common_code)) {
printf("error\n");
} else {
printf("common code -> %09lX\n", common_code);
}
// printf("cli exit\n");
return 0;
}