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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722
|
/* Copyright (c) 2000 Shlomi Fish
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
/*
* instance.h - header file of fc_solve_instance_t / fc_solve_hard_thread_t /
* fc_solve_soft_thread_t .
*
*/
#ifndef FC_SOLVE__FCS_H
#define FC_SOLVE__FCS_H
#ifdef __cplusplus
extern "C" {
#endif
#include "config.h"
#include "state.h"
#include "move.h"
#include "fcs_enums.h"
#include "inline.h"
#include "unused.h"
#include "indirect_buffer.h"
#include "rand.h"
#if (FCS_STATE_STORAGE == FCS_STATE_STORAGE_LIBREDBLACK_TREE) || (defined(INDIRECT_STACK_STATES) && (FCS_STACK_STORAGE == FCS_STACK_STORAGE_LIBREDBLACK_TREE))
#include <redblack.h>
#endif
#if (FCS_STATE_STORAGE == FCS_STATE_STORAGE_LIBAVL2_TREE)
#include "fcs_libavl2_state_storage.h"
#endif
#if (FCS_STACK_STORAGE == FCS_STACK_STORAGE_LIBAVL2_TREE)
#include "fcs_libavl2_stack_storage.h"
#endif
#if (FCS_STATE_STORAGE == FCS_STATE_STORAGE_GLIB_TREE) || (FCS_STATE_STORAGE == FCS_STATE_STORAGE_GLIB_HASH) || (defined(INDIRECT_STACK_STATES) && ((FCS_STACK_STORAGE == FCS_STACK_STORAGE_GLIB_TREE) || (FCS_STACK_STORAGE == FCS_STACK_STORAGE_GLIB_HASH)))
#include <glib.h>
#endif
#if ((defined(FCS_RCS_STATES) && (FCS_RCS_CACHE_STORAGE == FCS_RCS_CACHE_STORAGE_JUDY)) || (FCS_STATE_STORAGE == FCS_STATE_STORAGE_JUDY) || (defined(INDIRECT_STACK_STATES) && (FCS_STACK_STORAGE == FCS_STACK_STORAGE_JUDY)))
#include <Judy.h>
#endif
#if ((FCS_STATE_STORAGE == FCS_STATE_STORAGE_INTERNAL_HASH)||(FCS_STACK_STORAGE == FCS_STACK_STORAGE_INTERNAL_HASH))
#include "fcs_hash.h"
#endif
#if (FCS_STATE_STORAGE == FCS_STATE_STORAGE_GOOGLE_DENSE_HASH)
#include "google_hash.h"
#endif
#if (FCS_STACK_STORAGE == FCS_STACK_STORAGE_GOOGLE_DENSE_HASH)
#include "google_hash.h"
#endif
#if ((FCS_STATE_STORAGE == FCS_STATE_STORAGE_KAZ_TREE) || (defined(FCS_RCS_STATES) && (FCS_RCS_CACHE_STORAGE == FCS_RCS_CACHE_STORAGE_KAZ_TREE)))
#include "kaz_tree.h"
#endif
#if (FCS_STATE_STORAGE == FCS_STATE_STORAGE_DB_FILE)
#include <sys/types.h>
#include <limits.h>
#include <db.h>
#endif
#include "pqueue.h"
#include "alloc.h"
/*
* This is a linked list item that is used to implement a queue for the BFS
* scan.
* */
struct fcs_states_linked_list_item_struct
{
fcs_collectible_state_t * s;
struct fcs_states_linked_list_item_struct * next;
};
typedef struct fcs_states_linked_list_item_struct fcs_states_linked_list_item_t;
/*
* Conventions for use of the tests' order flags:
* A test that should be scanned sequentially should have both flags cleared.
* The first test in its random group should have both flags set. All the
* other tests in the group should contain the FLAG_RANDOM flag.
*
* For instance: 123(45)(67)8 translates into:
* 1 , 2, 3, 4|RANDOM|START_RANDOM_GROUP, 5|RANDOM,
* 6|RANDOM_START_RANDOM_GROUP, 7|RANDOM, 8
*
* */
enum
{
FCS_TEST_ORDER_NO_FLAGS_MASK = 0xFFFFFF,
FCS_TEST_ORDER_FLAG_RANDOM = 0x1000000,
FCS_TEST_ORDER_FLAG_START_RANDOM_GROUP = 0x2000000
};
/*
* Declare these structures because they will be used within
* fc_solve_instance, and they will contain a pointer to it.
* */
struct fc_solve_hard_thread_struct;
struct fc_solve_soft_thread_struct;
typedef void (*fc_solve_solve_for_state_test_t)(
struct fc_solve_soft_thread_struct *,
fcs_kv_state_t *,
fcs_derived_states_list_t *
);
typedef struct fc_solve_hard_thread_struct fc_solve_hard_thread_t;
#include "move_funcs_maps.h"
/* HT_LOOP == hard threads' loop - macros to abstract it. */
#define HT_LOOP_DECLARE_VARS() \
fc_solve_hard_thread_t * hard_thread, * end_hard_thread
#define HT_LOOP_START() \
for ( end_hard_thread = ( \
(hard_thread = instance->hard_threads) \
+ instance->num_hard_threads \
) ; \
hard_thread < end_hard_thread ; \
hard_thread++ \
)
/* ST_LOOP == soft threads' loop - macros to abstract it. */
#define ST_LOOP_DECLARE_VARS() \
fc_solve_soft_thread_t * soft_thread, * end_soft_thread
#define ST_LOOP_START() \
for ( end_soft_thread = ( \
(soft_thread = hard_thread->soft_threads) \
+ hard_thread->num_soft_threads \
) ; \
soft_thread < end_soft_thread ; \
soft_thread++ \
)
#define ST_LOOP_FINISHED() (soft_thread == end_soft_thread)
#define ST_LOOP_INDEX() (soft_thread - hard_thread->soft_threads)
#define TESTS_ORDER_GROW_BY 16
typedef struct
{
int num;
int * tests;
} fcs_tests_order_t;
typedef struct
{
int max_depth;
fcs_tests_order_t tests_order;
} fcs_by_depth_tests_order_t;
typedef struct
{
int num;
fcs_by_depth_tests_order_t * by_depth_tests;
} fcs_by_depth_tests_order_array_t;
typedef struct {
/*
* The number of Freecells, Stacks and Foundations present in the game.
*
* freecells_num and stacks_num are variable and may be specified at
* the beginning of the execution of the algorithm. However, there
* is a maximal limit to them which is set in config.h.
*
* decks_num can be 1 or 2 .
* */
#define DECLARE_GAME_PARAMS() \
fcs_game_type_params_t game_params
#define SET_INSTANCE_GAME_PARAMS(inst) \
game_params = (inst)->game_params
#define SET_GAME_PARAMS() \
SET_INSTANCE_GAME_PARAMS(instance)
#define DECLARE_AND_SET_GAME_PARAMS() \
fcs_game_type_params_t game_params = instance->game_params
#ifndef HARD_CODED_NUM_FREECELLS
fcs_game_limit_t freecells_num;
#define INSTANCE_FREECELLS_NUM (instance->game_params.freecells_num)
#define LOCAL_FREECELLS_NUM (game_params.freecells_num)
#else
#define INSTANCE_FREECELLS_NUM HARD_CODED_NUM_FREECELLS
#define LOCAL_FREECELLS_NUM HARD_CODED_NUM_FREECELLS
#endif
#ifndef HARD_CODED_NUM_STACKS
fcs_game_limit_t stacks_num;
#define INSTANCE_STACKS_NUM (instance->game_params.stacks_num)
#define LOCAL_STACKS_NUM (game_params.stacks_num)
#else
#define INSTANCE_STACKS_NUM HARD_CODED_NUM_STACKS
#define LOCAL_STACKS_NUM HARD_CODED_NUM_STACKS
#endif
#ifndef HARD_CODED_NUM_DECKS
fcs_game_limit_t decks_num;
#define INSTANCE_DECKS_NUM (instance->game_params.decks_num)
#define LOCAL_DECKS_NUM (game_params.decks_num)
#else
#define INSTANCE_DECKS_NUM HARD_CODED_NUM_DECKS
#define LOCAL_DECKS_NUM HARD_CODED_NUM_DECKS
#endif
#ifndef FCS_FREECELL_ONLY
/* sequences_are_built_by - (bits 0:1) - what two adjacent cards in the
* same sequence can be.
*
* empty_stacks_fill (bits 2:3) - with what cards can empty stacks be
* filled with.
*
* unlimited_sequence_move - (bit 4) - whether an entire sequence can be
* moved from one place to the other regardless of the number of
* unoccupied Freecells there are.
* */
fcs_game_limit_t game_flags;
#define INSTANCE_GAME_FLAGS (instance->game_params.game_flags)
#define GET_INSTANCE_SEQUENCES_ARE_BUILT_BY(instance) \
((instance)->game_params.game_flags & 0x3)
#define INSTANCE_UNLIMITED_SEQUENCE_MOVE (INSTANCE_GAME_FLAGS & (1 << 4))
#define INSTANCE_EMPTY_STACKS_FILL ((INSTANCE_GAME_FLAGS >> 2) & 0x3)
#endif
} fcs_game_type_params_t;
typedef fcs_game_limit_t fcs_runtime_flags_t;
#define STRUCT_CLEAR_FLAG(instance, flag) \
{ (instance)->runtime_flags &= ~flag; }
#define STRUCT_TURN_ON_FLAG(instance, flag) \
{ (instance)->runtime_flags |= flag; }
#define STRUCT_QUERY_FLAG(instance, flag) \
((instance)->runtime_flags & flag)
#define STRUCT_SET_FLAG_TO(instance, flag, value) \
{ \
STRUCT_CLEAR_FLAG(instance, flag); \
if (value) \
{ \
STRUCT_TURN_ON_FLAG(instance, flag); \
} \
}
enum
{
/* A flag that indicates whether to optimize the solution path
at the end of the scan */
FCS_RUNTIME_OPTIMIZE_SOLUTION_PATH = (1 << 0),
/*
* Specifies that we are now running the optimization thread.
* */
FCS_RUNTIME_IN_OPTIMIZATION_THREAD = (1 << 1),
/*
* A flag that indicates whether or not to explicitly calculate
* the depth of a state that was reached.
* */
FCS_RUNTIME_CALC_REAL_DEPTH = (1 << 2),
/*
* A flag that indicates if instance->opt_tests_order was set.
*/
FCS_RUNTIME_OPT_TESTS_ORDER_WAS_SET = (1 << 3),
/*
* This flag indicates whether scans should or should not reparent the
* states their encounter to a lower depth in the depth tree
*
* _proto is the one inputted by the user.
* _real is calculated based on other factors such as whether the
* scan method is FCS_METHOD_OPTIMIZE.
* */
FCS_RUNTIME_TO_REPARENT_STATES_PROTO = (1 << 4),
FCS_RUNTIME_TO_REPARENT_STATES_REAL = (1 << 5),
/*
* This variable determines how the scans cooperate with each other.
*
* A value of 0 indicates that they don't and only share the same
* states collection.
*
* A value of 1 indicates that they mark states as dead-end,
* which may help or hinder other scans.
* */
FCS_RUNTIME_SCANS_SYNERGY = (1 << 6),
};
#ifdef FCS_RCS_STATES
struct fcs_cache_key_info_struct
{
fcs_collectible_state_t * val_ptr;
fcs_state_t key;
/* lower_pri and higher_pri form a doubly linked list.
*
* pri == priority.
* */
struct fcs_cache_key_info_struct * lower_pri, * higher_pri;
};
typedef struct fcs_cache_key_info_struct fcs_cache_key_info_t;
typedef struct
{
#if (FCS_RCS_CACHE_STORAGE == FCS_RCS_CACHE_STORAGE_JUDY)
Pvoid_t states_values_to_keys_map;
#elif (FCS_RCS_CACHE_STORAGE == FCS_RCS_CACHE_STORAGE_KAZ_TREE)
dict_t * kaz_tree;
#else
#error unknown FCS_RCS_CACHE_STORAGE
#endif
fcs_compact_allocator_t states_values_to_keys_allocator;
long count_elements_in_cache, max_num_elements_in_cache;
fcs_cache_key_info_t * lowest_pri, * highest_pri;
fcs_cache_key_info_t * recycle_bin;
} fcs_lru_cache_t;
#endif
typedef void * fcs_instance_debug_iter_output_context_t;
typedef void (*fcs_instance_debug_iter_output_func_t)(
fcs_instance_debug_iter_output_context_t,
int iter_num,
int depth,
void * instance,
fcs_kv_state_t * state,
int parent_iter_num
);
struct fc_solve_instance_struct
{
#if (FCS_STATE_STORAGE == FCS_STATE_STORAGE_INDIRECT)
/* The sort-margin */
fcs_standalone_state_ptrs_t indirect_prev_states_margin[PREV_STATES_SORT_MARGIN];
/* The number of states in the sort margin */
int num_prev_states_margin;
/* The sorted cached states, and their number. The maximal
* size is calculated based on the number.
* */
fcs_standalone_state_ptrs_t * indirect_prev_states;
int num_indirect_prev_states;
#endif
/*
* The parameters of the game - see the declaration of
* fcs_game_type_params_t .
*
* */
fcs_game_type_params_t game_params;
/* The number of states that were checked by the solving algorithm.
* Badly named, should be renamed to num_iters or num_checked_states */
int num_times;
/*
* Like max_num_times only defaults to MAX_INT if below zero so it will
* work without checking if it's zero.
*
* Normally should be used instead.
* */
int effective_max_num_times, effective_max_num_states_in_collection;
long effective_trim_states_in_collection_from;
/*
* tree is the balanced binary tree that is used to store and index
* the checked states.
*
* */
#if (FCS_STATE_STORAGE == FCS_STATE_STORAGE_LIBREDBLACK_TREE)
struct rbtree * tree;
#elif (FCS_STATE_STORAGE == FCS_STATE_STORAGE_JUDY)
Pvoid_t judy_array;
#elif (FCS_STATE_STORAGE == FCS_STATE_STORAGE_LIBAVL2_TREE)
fcs_libavl2_states_tree_table_t * tree;
#elif (FCS_STATE_STORAGE == FCS_STATE_STORAGE_GLIB_TREE)
GTree * tree;
#elif (FCS_STATE_STORAGE == FCS_STATE_STORAGE_KAZ_TREE)
dict_t * tree;
#endif
/*
* hash is the hash table that is used to store the previous
* states of the scan.
* */
#if (FCS_STATE_STORAGE == FCS_STATE_STORAGE_GLIB_HASH)
GHashTable * hash;
#elif (FCS_STATE_STORAGE == FCS_STATE_STORAGE_INTERNAL_HASH)
fc_solve_hash_t hash;
#elif (FCS_STATE_STORAGE == FCS_STATE_STORAGE_GOOGLE_DENSE_HASH)
fcs_states_google_hash_handle_t hash;
#endif
#if defined(INDIRECT_STACK_STATES)
/*
* The storage mechanism for the stacks assuming INDIRECT_STACK_STATES is
* used.
* */
#if (FCS_STACK_STORAGE == FCS_STACK_STORAGE_INTERNAL_HASH)
fc_solve_hash_t stacks_hash;
#elif (FCS_STACK_STORAGE == FCS_STACK_STORAGE_LIBAVL2_TREE)
fcs_libavl2_stacks_tree_table_t * stacks_tree;
#elif (FCS_STACK_STORAGE == FCS_STACK_STORAGE_LIBREDBLACK_TREE)
struct rbtree * stacks_tree;
#elif (FCS_STACK_STORAGE == FCS_STACK_STORAGE_GLIB_TREE)
GTree * stacks_tree;
#elif (FCS_STACK_STORAGE == FCS_STACK_STORAGE_GLIB_HASH)
GHashTable * stacks_hash;
#elif (FCS_STACK_STORAGE == FCS_STACK_STORAGE_GOOGLE_DENSE_HASH)
fcs_columns_google_hash_handle_t stacks_hash;
#elif (FCS_STACK_STORAGE == FCS_STACK_STORAGE_JUDY)
Pvoid_t stacks_judy_array;
#else
#error FCS_STACK_STORAGE is not set to a good value.
#endif
#endif
fcs_collectible_state_t * list_of_vacant_states;
/*
* Storing using Berkeley DB is not operational for some reason so
* pay no attention to it for the while
* */
#if (FCS_STATE_STORAGE == FCS_STATE_STORAGE_DB_FILE)
DB * db;
#endif
fcs_runtime_flags_t runtime_flags;
/*
* This is the number of states in the state collection.
*
* It gives a rough estimate of the memory occupied by the instance.
* */
int active_num_states_in_collection, num_states_in_collection;
/*
* A limit to the above.
* */
int max_num_states_in_collection;
int num_hard_threads;
struct fc_solve_hard_thread_struct * hard_threads;
/*
* An iterator over the hard threads.
* */
fc_solve_hard_thread_t * current_hard_thread;
/*
* This is the master tests order. It is used to initialize all
* the new Soft-Threads.
* */
fcs_tests_order_t instance_tests_order;
/*
* This is the hard-thread used for the optimization scan.
* */
struct fc_solve_hard_thread_struct * optimization_thread;
/*
* A counter that determines how many of the hard threads that belong
* to this hard thread have already finished. If it becomes num_hard_threads
* the instance terminates.
* */
int num_hard_threads_finished;
/*
* The tests order for the optimization scan as specified by the user.
* */
fcs_tests_order_t opt_tests_order;
#ifdef FCS_RCS_STATES
fcs_lru_cache_t rcs_states_cache;
#if ((FCS_STATE_STORAGE == FCS_STATE_STORAGE_LIBAVL2_TREE) || (FCS_STATE_STORAGE == FCS_STATE_STORAGE_KAZ_TREE))
fcs_state_t * tree_new_state_key;
fcs_collectible_state_t * tree_new_state;
#endif
#endif
/*
* Limits for the maximal depth and for the maximal number of checked
* states. max_num_times is useful because it enables the process to
* stop before it consumes too much memory.
*
* max_depth is quite dangerous because it blocks some intermediate moves
* and doesn't allow a program to fully reach its solution.
*
* */
int max_depth;
int max_num_times;
long trim_states_in_collection_from;
/*
* The debug_iter_output variables provide a programmer programmable way
* to debug the algorithm while it is running. This works well for DFS
* and Soft-DFS scans but at present support for BeFS and BFS is not
* too good, as its hard to tell which state came from which parent state.
*
* debug_iter_output_func is a pointer to the function that performs the
* debugging. If NULL, this feature is not used.
*
* debug_iter_output_context is a user-specified context for it, that
* may include data that is not included in the instance structure.
*
* This feature is used by the "-s" and "-i" flags of fc-solve-debug.
* */
fcs_instance_debug_iter_output_func_t debug_iter_output_func;
fcs_instance_debug_iter_output_context_t debug_iter_output_context;
/*
* The next ID to allocate for a soft-thread.
* */
int next_soft_thread_id;
/* This is a place-holder for the initial state */
fcs_state_keyval_pair_t * state_copy_ptr;
/* This is the final state that the scan recommends to the
* interface
* */
fcs_collectible_state_t * final_state;
/*
* A move stack that contains the moves leading to the solution.
*
* It is created only after the solution was found by swallowing
* all the stacks of each depth.
* */
fcs_move_stack_t solution_moves;
};
typedef struct fc_solve_instance_struct fc_solve_instance_t;
/***************************************************/
typedef struct
{
int scan_idx;
int quota;
} fcs_prelude_item_t;
struct fc_solve_hard_thread_struct
{
fc_solve_instance_t * instance;
struct fc_solve_soft_thread_struct * soft_threads;
/*
* The hard thread count of how many states he checked himself. The
* instance num_times can be confusing because other threads modify it too.
*
* Thus, the soft thread switching should be done based on this variable
* */
int num_times;
/*
* The maximal limit for num_times.
* */
int max_num_times;
int num_times_step;
/*
* This is the number of iterations that still have to be done for
* soft_threads[st_idx]. It is reset to (st_idx+1)->num_times_step
* when st_idx is incremented.
* */
int num_times_left_for_soft_thread;
/*
* These variables are used to compute the MD5 checksum of a state
* that is about to be checked. I decided to make them globals so
* they won't have to be re-allocated and freed all the time.
*
* Notice that it is only used with my internal hash implmentation
* as GLib requires a dedicated hash function, which cannot
* access the instance.
*
* */
/*
* The index for the soft-thread that is currently processed
* */
int st_idx;
/*
* This is the mechanism used to allocate memory for stacks, states
* and move stacks.
* */
fcs_compact_allocator_t allocator;
/*
* This is a move stack that is used and re-used by the
* tests functions of this hard thread
* */
fcs_move_stack_t reusable_move_stack;
#ifdef INDIRECT_STACK_STATES
/*
* This is a buffer used to temporarily store the stacks of the duplicated
* state.
* */
dll_ind_buf_t indirect_stacks_buffer;
#endif
int prelude_num_items;
int prelude_idx;
fcs_prelude_item_t * prelude;
fcs_bool_t allocated_from_list;
int num_soft_threads;
/*
* A counter that determines how many of the soft threads that belong
* to this hard thread have already finished. If it becomes num_soft_threads
* this thread is skipped.
* */
int num_soft_threads_finished;
char * prelude_as_string;
};
/********************************************/
typedef struct
{
fcs_collectible_state_t * state;
fcs_derived_states_list_t derived_states_list;
int current_state_index;
int tests_list_index;
int test_index;
int derived_states_random_indexes_max_size;
int * derived_states_random_indexes;
char * positions_by_rank;
fcs_game_limit_t num_vacant_stacks;
fcs_game_limit_t num_vacant_freecells;
} fcs_soft_dfs_stack_item_t;
enum
{
/*
* A flag that indicates if this soft thread has already been
* initialized.
* */
FCS_SOFT_THREAD_INITIALIZED = (1 << 0),
/*
* A flag that indicates if this scan contains all the tests that
* are accessible to all the other scans
* */
FCS_SOFT_THREAD_IS_A_COMPLETE_SCAN = (1 << 1),
/*
* A flag that indicates if this scan has completed a scan. Used by
* solve_instance() to skip to the next scan.
* */
FCS_SOFT_THREAD_IS_FINISHED = (1 << 2),
};
typedef struct {
fc_solve_solve_for_state_test_t * tests;
int num_tests;
int to_randomize;
} fcs_tests_list_t;
typedef struct {
int num_lists;
fcs_tests_list_t * lists;
} fcs_tests_list_of_lists;
typedef struct {
int max_depth;
fcs_tests_list_of_lists tests;
} fcs_tests_by_depth_unit_t;
typedef struct {
int num_units;
fcs_tests_by_depth_unit_t * by_depth_units;
} fcs_tests_by_depth_array_t;
struct fc_solve_soft_thread_struct
{
fc_solve_hard_thread_t * hard_thread;
/*
* The ID of the soft thread inside the instance.
* Used for the state-specific flags.
* */
int id;
/*
* The tests' order indicates which tests (i.e: kinds of multi-moves) to
* do at what order. This is most relevant to DFS and Soft-DFS.
*
* tests_order_num is the number of tests in the test's order. Notice
* that it can be lower than FCS_TESTS_NUM, thus enabling several tests
* to be removed completely.
* */
fcs_by_depth_tests_order_array_t by_depth_tests_order;
/*
* The method (i.e: DFS, Soft-DFS, BFS or BeFS) that is used by this
* instance.
*
* */
int method;
union
{
struct
{
/*
* The (temporary) max depth of the Soft-DFS scans)
* */
int dfs_max_depth;
/*
* These are stacks used by the Soft-DFS for various uses.
*
* states_to_check - an array of states to be checked next. Not
* all of them will be checked because it is possible that future
* states already visited them.
*
* states_to_check_move_stacks - an array of move stacks that
* lead to those states.
*
* num_states_to_check - the size of states_to_check[i]
*
* current_state_indexes - the index of the last checked state
* in depth i.
*
* test_indexes - the index of the test that was last
* performed. FCS performs each test separately, so
* states_to_check and friends will not be overpopulated.
*
* num_vacant_stacks - the number of unoccpied stacks that
* correspond
* to solution_states.
*
* num_vacant_freecells - ditto for the freecells.
*
* */
fcs_soft_dfs_stack_item_t * soft_dfs_info;
/* The depth of the DFS stacks */
int depth;
/*
* A pseudo-random number generator for use in the random-DFS scan
* */
fcs_rand_t rand_gen;
/*
* The initial seed of this random number generator
* */
int rand_seed;
/*
* The tests to be performed in a preprocessed form.
* */
fcs_tests_by_depth_array_t tests_by_depth_array;
} soft_dfs;
struct
{
char * befs_positions_by_rank;
fc_solve_solve_for_state_test_t * tests_list, * tests_list_end;
union
{
struct
{
/*
* A linked list that serves as the queue for the BFS scan.
* */
fcs_states_linked_list_item_t * bfs_queue;
/*
* The last item in the linked list, so new items can be added at
* it, thus making it a queue.
* */
fcs_states_linked_list_item_t * bfs_queue_last_item;
/*
* A linked list of items that were freed from
* the queue and should be reused before allocating new
* items.
* */
fcs_states_linked_list_item_t * recycle_bin;
} brfs;
struct
{
/*
* The priority queue of the BeFS scan
* */
PQUEUE pqueue;
double initial_cards_under_sequences_value;
/*
* The BeFS weights of the different BeFS tests. Those
* weights determine the commulative priority of the state.
* */
double befs_weights[5];
} befs;
} meth;
} befs;
} method_specific;
/*
* The first state to be checked by the scan. It is a kind of bootstrap
* for the algorithm.
* */
fcs_collectible_state_t * first_state_to_check;
fcs_runtime_flags_t runtime_flags;
/*
* The number of vacant stacks in the current state - is read from
* the test functions in freecell.c .
* */
fcs_game_limit_t num_vacant_stacks;
/*
* The number of vacant freecells in the current state - is read
* from the test functions in freecell.c .
* */
fcs_game_limit_t num_vacant_freecells;
/*
* The number of iterations with which to process this scan
* */
int num_times_step;
/*
* A malloced string that serves as an identification for the user.
* */
char * name;
/*
* Whether pruning should be done.
* This variable is temporary - there should be a better pruning
* abstraction with several optional prunes.
* */
fcs_bool_t enable_pruning;
};
typedef struct fc_solve_soft_thread_struct fc_solve_soft_thread_t;
#define FC_SOLVE_IS_DFS(soft_thread) \
((soft_thread->method == FCS_METHOD_SOFT_DFS) || \
(soft_thread->method == FCS_METHOD_RANDOM_DFS) \
)
/*
* An enum that specifies the meaning of each BeFS weight.
* */
#define FCS_BEFS_WEIGHT_CARDS_OUT 0
#define FCS_BEFS_WEIGHT_MAX_SEQUENCE_MOVE 1
#define FCS_BEFS_WEIGHT_CARDS_UNDER_SEQUENCES 2
#define FCS_BEFS_WEIGHT_SEQS_OVER_RENEGADE_CARDS 3
#define FCS_BEFS_WEIGHT_DEPTH 4
fc_solve_instance_t * fc_solve_alloc_instance(void);
extern void fc_solve_init_instance(
fc_solve_instance_t * instance
);
extern void fc_solve_free_instance(
fc_solve_instance_t * instance
);
extern void fc_solve_finish_instance(
fc_solve_instance_t * instance
);
extern void fc_solve_start_instance_process_with_board(
fc_solve_instance_t * instance,
fcs_state_keyval_pair_t * init_state_val
);
extern int fc_solve_befs_or_bfs_do_solve(
fc_solve_soft_thread_t * soft_thread
);
extern void fc_solve_increase_dfs_max_depth(
fc_solve_soft_thread_t * soft_thread
);
static GCC_INLINE void * memdup(void * src, size_t mysize)
{
void * dest;
dest = malloc(mysize);
if (dest == NULL)
{
return NULL;
}
memcpy(dest, src, mysize);
return dest;
}
static GCC_INLINE void fc_solve_soft_thread_init_soft_dfs(
fc_solve_soft_thread_t * soft_thread
)
{
fc_solve_instance_t * instance = soft_thread->hard_thread->instance;
fcs_state_keyval_pair_t * ptr_orig_state = instance->state_copy_ptr;
/*
Allocate some space for the states at depth 0.
*/
soft_thread->method_specific.soft_dfs.depth = 0;
fc_solve_increase_dfs_max_depth(soft_thread);
soft_thread->method_specific.soft_dfs.soft_dfs_info[0].state
= FCS_STATE_keyval_pair_to_collectible(ptr_orig_state);
fc_solve_rand_init(
&(soft_thread->method_specific.soft_dfs.rand_gen),
soft_thread->method_specific.soft_dfs.rand_seed
);
if (! soft_thread->method_specific.soft_dfs.tests_by_depth_array.by_depth_units)
{
fcs_tests_list_of_lists * tests_list_of_lists;
fc_solve_solve_for_state_test_t * tests_list, * next_test;
fcs_tests_list_t * tests_list_struct_ptr;
fcs_tests_by_depth_array_t * arr_ptr;
int tests_order_num;
int * tests_order_tests;
int start_i;
fcs_bool_t master_to_randomize =
(soft_thread->method == FCS_METHOD_RANDOM_DFS)
;
fcs_bool_t do_first_iteration;
int depth_idx;
fcs_by_depth_tests_order_t * by_depth_tests_order;
arr_ptr = &(soft_thread->method_specific.soft_dfs.tests_by_depth_array);
arr_ptr->by_depth_units =
malloc(
sizeof(arr_ptr->by_depth_units[0])
* (arr_ptr->num_units = soft_thread->by_depth_tests_order.num)
);
by_depth_tests_order =
soft_thread->by_depth_tests_order.by_depth_tests;
for (depth_idx = 0 ;
depth_idx < soft_thread->by_depth_tests_order.num ;
depth_idx++)
{
arr_ptr->by_depth_units[depth_idx].max_depth =
by_depth_tests_order[depth_idx].max_depth;
tests_order_tests = by_depth_tests_order[depth_idx].tests_order.tests;
tests_order_num = by_depth_tests_order[depth_idx].tests_order.num;
tests_list_of_lists =
&(arr_ptr->by_depth_units[depth_idx].tests);
tests_list_of_lists->num_lists = 0;
tests_list_of_lists->lists =
malloc(
sizeof(tests_list_of_lists->lists[0]) * tests_order_num
);
tests_list = malloc(sizeof(tests_list[0]) * tests_order_num);
start_i = 0;
while (start_i < tests_order_num)
{
int i;
do_first_iteration = TRUE;
for (i = start_i, next_test = tests_list ;
(i < tests_order_num) &&
(do_first_iteration ||
((!master_to_randomize) ||
(
/* We are still on a random group */
(tests_order_tests[ i ] & FCS_TEST_ORDER_FLAG_RANDOM) &&
/* A new random group did not start */
(! (tests_order_tests[ i ] & FCS_TEST_ORDER_FLAG_START_RANDOM_GROUP))
)
)
)
;
i++)
{
do_first_iteration = FALSE;
*(next_test++) =
fc_solve_sfs_tests[
tests_order_tests[i] & FCS_TEST_ORDER_NO_FLAGS_MASK
];
}
tests_list_struct_ptr =
&(tests_list_of_lists->lists[tests_list_of_lists->num_lists++])
;
;
tests_list_struct_ptr->tests =
memdup(tests_list,
sizeof(tests_list[0])
* (tests_list_struct_ptr->num_tests = i-start_i)
);
tests_list_struct_ptr->to_randomize =
master_to_randomize &&
(i > start_i) &&
(tests_order_tests[ i-1 ] & FCS_TEST_ORDER_FLAG_RANDOM)
;
start_i = i;
}
tests_list_of_lists->lists =
realloc(
tests_list_of_lists->lists,
sizeof(tests_list_of_lists->lists[0]) *
tests_list_of_lists->num_lists
);
free(tests_list);
}
}
return;
}
extern int fc_solve_soft_dfs_do_solve(fc_solve_soft_thread_t * soft_thread);
extern void fc_solve_soft_thread_init_befs_or_bfs(
fc_solve_soft_thread_t * soft_thread
);
static GCC_INLINE int run_hard_thread(fc_solve_hard_thread_t * hard_thread)
{
fc_solve_soft_thread_t * soft_thread;
int num_times_started_at;
int ret;
fc_solve_instance_t * instance = hard_thread->instance;
int * st_idx_ptr = &(hard_thread->st_idx);
/*
* Again, making sure that not all of the soft_threads in this
* hard thread are finished.
* */
ret = FCS_STATE_SUSPEND_PROCESS;
while(hard_thread->num_soft_threads_finished < hard_thread->num_soft_threads)
{
soft_thread = &(hard_thread->soft_threads[*st_idx_ptr]);
/*
* Move to the next thread if it's already finished
* */
if (STRUCT_QUERY_FLAG(soft_thread, FCS_SOFT_THREAD_IS_FINISHED))
{
/*
* Hmmpf - duplicate code. That's ANSI C for you.
* A macro, anyone?
* */
#define switch_to_next_soft_thread() \
/* \
* Switch to the next soft thread in the hard thread, \
* since we are going to call continue and this is \
* a while loop \
* */ \
if ((hard_thread->prelude != NULL) && \
(hard_thread->prelude_idx < hard_thread->prelude_num_items)) \
{ \
(*st_idx_ptr) = hard_thread->prelude[hard_thread->prelude_idx].scan_idx; \
hard_thread->num_times_left_for_soft_thread = hard_thread->prelude[hard_thread->prelude_idx].quota; \
hard_thread->prelude_idx++; \
} \
else \
{ \
if ((++(*st_idx_ptr)) == hard_thread->num_soft_threads) \
{ \
*(st_idx_ptr) = 0; \
} \
hard_thread->num_times_left_for_soft_thread = hard_thread->soft_threads[*st_idx_ptr].num_times_step; \
}
switch_to_next_soft_thread();
continue;
}
/*
* Keep record of the number of iterations since this
* thread started.
* */
num_times_started_at = hard_thread->num_times;
/*
* Calculate a soft thread-wise limit for this hard
* thread to run.
* */
hard_thread->max_num_times = hard_thread->num_times + hard_thread->num_times_left_for_soft_thread;
/*
* Call the resume or solving function that is specific
* to each scan
*
* This switch-like construct calls for declaring a class
* that will abstract a scan. But it's not critical since
* I don't support user-defined scans.
* */
switch(soft_thread->method)
{
case FCS_METHOD_SOFT_DFS:
case FCS_METHOD_HARD_DFS:
case FCS_METHOD_RANDOM_DFS:
if (! STRUCT_QUERY_FLAG(soft_thread, FCS_SOFT_THREAD_INITIALIZED))
{
fc_solve_soft_thread_init_soft_dfs(soft_thread);
STRUCT_TURN_ON_FLAG(soft_thread, FCS_SOFT_THREAD_INITIALIZED);
}
ret = fc_solve_soft_dfs_do_solve(soft_thread);
break;
case FCS_METHOD_BFS:
case FCS_METHOD_A_STAR:
case FCS_METHOD_OPTIMIZE:
if (! STRUCT_QUERY_FLAG(soft_thread, FCS_SOFT_THREAD_INITIALIZED))
{
fc_solve_soft_thread_init_befs_or_bfs(soft_thread);
STRUCT_TURN_ON_FLAG(soft_thread, FCS_SOFT_THREAD_INITIALIZED);
}
ret = fc_solve_befs_or_bfs_do_solve(soft_thread);
break;
default:
ret = FCS_STATE_IS_NOT_SOLVEABLE;
break;
}
/*
* Determine how much iterations we still have left
* */
hard_thread->num_times_left_for_soft_thread -= (hard_thread->num_times - num_times_started_at);
/*
* I use <= instead of == because it is possible that
* there will be a few more iterations than what this
* thread was allocated, due to the fact that
* check_and_add_state is only called by the test
* functions.
*
* It's a kludge, but it works.
* */
if (hard_thread->num_times_left_for_soft_thread <= 0)
{
switch_to_next_soft_thread();
/*
* Reset num_times_left_for_soft_thread
* */
}
#undef switch_to_next_soft_thread
/*
* It this thread indicated that the scan was finished,
* disable the thread or even stop searching altogether.
* */
if (ret == FCS_STATE_IS_NOT_SOLVEABLE)
{
STRUCT_TURN_ON_FLAG(soft_thread, FCS_SOFT_THREAD_IS_FINISHED);
hard_thread->num_soft_threads_finished++;
if (hard_thread->num_soft_threads_finished == hard_thread->num_soft_threads)
{
instance->num_hard_threads_finished++;
}
/*
* Check if this thread is a complete scan and if so,
* terminate the search. Note that if the scans synergy is set,
* then we may still need to continue running the other threads
* which may have blocked some positions / states in the graph.
* */
if (STRUCT_QUERY_FLAG(soft_thread, FCS_SOFT_THREAD_IS_A_COMPLETE_SCAN) &&
(! STRUCT_QUERY_FLAG(instance, FCS_RUNTIME_SCANS_SYNERGY))
)
{
return FCS_STATE_IS_NOT_SOLVEABLE;
}
else
{
/*
* Else, make sure ret is something more sensible
* */
ret = FCS_STATE_SUSPEND_PROCESS;
}
}
if ((ret == FCS_STATE_WAS_SOLVED) ||
(
(ret == FCS_STATE_SUSPEND_PROCESS) &&
/* There's a limit to the scan only
* if max_num_times is greater than 0 */
(
(
(instance->num_times >= instance->effective_max_num_times)
) ||
(instance->num_states_in_collection >=
instance->effective_max_num_states_in_collection
)
)
)
)
{
return ret;
}
}
return ret;
}
extern void fc_solve_trace_solution(
fc_solve_instance_t * instance
);
extern void fc_solve_instance__init_hard_thread(
fc_solve_instance_t * instance,
fc_solve_hard_thread_t * hard_thread
);
extern void fc_solve_free_soft_thread_by_depth_test_array(fc_solve_soft_thread_t * soft_thread);
static GCC_INLINE fcs_tests_order_t tests_order_dup(fcs_tests_order_t * orig)
{
fcs_tests_order_t ret;
ret.num = orig->num;
ret.tests =
malloc(sizeof(ret.tests[0]) *
((ret.num & (~(TESTS_ORDER_GROW_BY - 1)))+TESTS_ORDER_GROW_BY)
);
memcpy(ret.tests, orig->tests, sizeof(ret.tests[0]) * ret.num);
return ret;
}
/*
This function optimizes the solution path using a BFS scan on the
states in the solution path.
*/
static GCC_INLINE int fc_solve_optimize_solution(
fc_solve_instance_t * instance
)
{
fc_solve_soft_thread_t * soft_thread;
fc_solve_hard_thread_t * old_hard_thread, * optimization_thread;
STRUCT_TURN_ON_FLAG(instance, FCS_RUNTIME_TO_REPARENT_STATES_REAL);
if (! instance->optimization_thread)
{
instance->optimization_thread =
optimization_thread =
malloc(sizeof(*optimization_thread));
fc_solve_instance__init_hard_thread(instance, optimization_thread);
old_hard_thread = instance->current_hard_thread;
soft_thread = optimization_thread->soft_threads;
/* Copy enable_pruning from the thread that reached the solution,
* because otherwise -opt in conjunction with -sp r:tf will fail.
* */
soft_thread->enable_pruning = old_hard_thread->soft_threads[old_hard_thread->st_idx].enable_pruning;
}
else
{
optimization_thread = instance->optimization_thread;
soft_thread = optimization_thread->soft_threads;
}
if (STRUCT_QUERY_FLAG(instance, FCS_RUNTIME_OPT_TESTS_ORDER_WAS_SET))
{
if (soft_thread->by_depth_tests_order.by_depth_tests != NULL)
{
fc_solve_free_soft_thread_by_depth_test_array(soft_thread);
}
soft_thread->by_depth_tests_order.num = 1;
soft_thread->by_depth_tests_order.by_depth_tests =
malloc(sizeof(soft_thread->by_depth_tests_order.by_depth_tests[0]));
soft_thread->by_depth_tests_order.by_depth_tests[0].max_depth = INT_MAX;
soft_thread->by_depth_tests_order.by_depth_tests[0].tests_order =
tests_order_dup(&(instance->opt_tests_order));
}
soft_thread->method = FCS_METHOD_OPTIMIZE;
STRUCT_TURN_ON_FLAG(soft_thread, FCS_SOFT_THREAD_IS_A_COMPLETE_SCAN);
/* Initialize the optimization hard-thread and soft-thread */
optimization_thread->num_times_left_for_soft_thread = 1000000;
/* Instruct the optimization hard thread to run indefinitely AFA it
* is concerned */
optimization_thread->max_num_times = INT_MAX;
fc_solve_soft_thread_init_befs_or_bfs(soft_thread);
STRUCT_TURN_ON_FLAG(soft_thread, FCS_SOFT_THREAD_INITIALIZED);
STRUCT_TURN_ON_FLAG(instance, FCS_RUNTIME_IN_OPTIMIZATION_THREAD);
return
fc_solve_befs_or_bfs_do_solve(
soft_thread
);
}
/* Resume a solution process that was stopped in the middle */
static GCC_INLINE int fc_solve_resume_instance(
fc_solve_instance_t * instance
)
{
int ret = FCS_STATE_SUSPEND_PROCESS;
fc_solve_hard_thread_t * hard_thread;
/*
* If the optimization thread is defined, it means we are in the
* optimization phase of the total scan. In that case, just call
* its scanning function.
*
* Else, proceed with the normal total scan.
* */
if (STRUCT_QUERY_FLAG(instance, FCS_RUNTIME_IN_OPTIMIZATION_THREAD))
{
ret =
fc_solve_befs_or_bfs_do_solve(
&(instance->optimization_thread->soft_threads[0])
);
}
else
{
fc_solve_hard_thread_t * end_of_hard_threads =
instance->hard_threads + instance->num_hard_threads
;
hard_thread = instance->current_hard_thread;
/*
* instance->num_hard_threads_finished signals to us that
* all the incomplete soft threads terminated. It is necessary
* in case the scan only contains incomplete threads.
*
* I.e: 01235 and 01246, where no thread contains all tests.
* */
while(instance->num_hard_threads_finished < instance->num_hard_threads)
{
/*
* A loop on the hard threads.
* Note that we do not initialize instance->ht_idx because:
* 1. It is initialized before the first call to this function.
* 2. It is reset to zero below.
* */
for (
;
hard_thread < end_of_hard_threads
;
hard_thread++
)
{
ret = run_hard_thread(hard_thread);
if ((ret == FCS_STATE_IS_NOT_SOLVEABLE) ||
(ret == FCS_STATE_WAS_SOLVED) ||
(
(ret == FCS_STATE_SUSPEND_PROCESS) &&
/* There's a limit to the scan only
* if max_num_times is greater than 0 */
(
(instance->num_times >= instance->effective_max_num_times)
||
(instance->num_states_in_collection >= instance->effective_max_num_states_in_collection)
)
)
)
{
goto end_of_hard_threads_loop;
}
}
hard_thread = instance->hard_threads;
}
end_of_hard_threads_loop:
instance->current_hard_thread = hard_thread;
/*
* If all the incomplete scans finished, then terminate.
* */
if (instance->num_hard_threads_finished == instance->num_hard_threads)
{
ret = FCS_STATE_IS_NOT_SOLVEABLE;
}
if (ret == FCS_STATE_WAS_SOLVED)
{
/* Create solution_moves in the first place */
fc_solve_trace_solution(instance);
}
}
if (ret == FCS_STATE_WAS_SOLVED)
{
if (STRUCT_QUERY_FLAG(instance, FCS_RUNTIME_OPTIMIZE_SOLUTION_PATH))
{
/* Call optimize_solution only once. Make sure that if
* it has already run - we retain the old ret. */
if (! STRUCT_QUERY_FLAG(instance, FCS_RUNTIME_IN_OPTIMIZATION_THREAD))
{
ret = fc_solve_optimize_solution(instance);
}
if (ret == FCS_STATE_WAS_SOLVED)
{
/* Create the solution_moves in the first place */
fc_solve_trace_solution(instance);
}
}
}
return ret;
}
/*
Clean up a solving process that was terminated in the middle.
This function does not substitute for later calling
finish_instance() and free_instance().
*/
static GCC_INLINE void fc_solve_unresume_instance(
fc_solve_instance_t * instance GCC_UNUSED
)
{
/*
* Do nothing - since finish_instance() can take care of solution_states
* and proto_solution_moves as they were created by these scans, then
* I don't need to do it here, too
*
* */
}
static GCC_INLINE fc_solve_soft_thread_t *
fc_solve_instance_get_first_soft_thread(
fc_solve_instance_t * instance
)
{
return &(instance->hard_threads[0].soft_threads[0]);
}
extern fc_solve_soft_thread_t * fc_solve_new_soft_thread(
fc_solve_hard_thread_t * const hard_thread
);
static GCC_INLINE fc_solve_soft_thread_t * fc_solve_new_hard_thread(
fc_solve_instance_t * const instance
)
{
fc_solve_hard_thread_t * ret;
HT_LOOP_DECLARE_VARS();
/* Make sure we are not exceeding the maximal number of soft threads
* for an instance. */
if (instance->next_soft_thread_id == MAX_NUM_SCANS)
{
return NULL;
}
instance->hard_threads =
realloc(
instance->hard_threads,
(sizeof(instance->hard_threads[0]) * (instance->num_hard_threads+1))
);
/* Since we realloc()ed the hard_threads, their addresses changed,
* so we need to update it.
* */
HT_LOOP_START()
{
ST_LOOP_DECLARE_VARS();
ST_LOOP_START()
{
soft_thread->hard_thread = hard_thread;
}
}
fc_solve_instance__init_hard_thread(
instance,
(ret = &(instance->hard_threads[instance->num_hard_threads]))
);
instance->num_hard_threads++;
return &(ret->soft_threads[0]);
}
/* This is the commmon code from fc_solve_instance__init_hard_thread() and
* recycle_hard_thread() */
static GCC_INLINE void fc_solve_reset_hard_thread(
fc_solve_hard_thread_t * const hard_thread
)
{
hard_thread->num_times = 0;
hard_thread->max_num_times = INT_MAX;
hard_thread->num_soft_threads_finished = 0;
}
static GCC_INLINE void fc_solve_reset_soft_thread(
fc_solve_soft_thread_t * const soft_thread
)
{
STRUCT_CLEAR_FLAG(soft_thread, FCS_SOFT_THREAD_IS_FINISHED);
STRUCT_CLEAR_FLAG(soft_thread, FCS_SOFT_THREAD_INITIALIZED);
}
static GCC_INLINE void fc_solve_release_tests_list(
fc_solve_soft_thread_t * const soft_thread,
const fcs_bool_t is_scan_befs_or_bfs
)
{
if (is_scan_befs_or_bfs)
{
free (soft_thread->method_specific.befs.tests_list);
soft_thread->method_specific.befs.tests_list = NULL;
}
else
{
/* A DFS Scan. */
int unit_idx;
fcs_tests_by_depth_array_t * arr;
arr = &(soft_thread->method_specific.soft_dfs.tests_by_depth_array);
for (unit_idx = 0 ; unit_idx < arr->num_units ; unit_idx++)
{
if (arr->by_depth_units[unit_idx].tests.lists)
{
fcs_tests_list_t * lists = arr->by_depth_units[unit_idx].tests.lists;
int num_lists = arr->by_depth_units[unit_idx].tests.num_lists;
int i;
for (i=0 ;
i < num_lists ;
i++)
{
free (lists[i].tests);
}
free (lists);
}
}
free(arr->by_depth_units);
arr->by_depth_units = NULL;
}
}
static GCC_INLINE void fc_solve_instance__recycle_hard_thread(
fc_solve_hard_thread_t * const hard_thread
)
{
ST_LOOP_DECLARE_VARS();
fc_solve_reset_hard_thread(hard_thread);
fc_solve_compact_allocator_recycle(&(hard_thread->allocator));
ST_LOOP_START()
{
if (soft_thread->method == FCS_METHOD_A_STAR)
{
fc_solve_PQueueFree(
&(soft_thread->method_specific.befs.meth.befs.pqueue)
);
}
fc_solve_reset_soft_thread(soft_thread);
}
return;
}
static GCC_INLINE void fc_solve_recycle_instance(
fc_solve_instance_t * const instance
)
{
int ht_idx;
fc_solve_finish_instance(instance);
instance->num_times = 0;
instance->num_hard_threads_finished = 0;
for(ht_idx = 0; ht_idx < instance->num_hard_threads; ht_idx++)
{
fc_solve_instance__recycle_hard_thread(&(instance->hard_threads[ht_idx]));
}
if (instance->optimization_thread)
{
fc_solve_instance__recycle_hard_thread(instance->optimization_thread);
}
STRUCT_CLEAR_FLAG(instance, FCS_RUNTIME_IN_OPTIMIZATION_THREAD);
}
extern const double fc_solve_default_befs_weights[5];
#ifdef FCS_RCS_STATES
fcs_state_t * fc_solve_lookup_state_key_from_val(
fc_solve_instance_t * instance,
fcs_collectible_state_t * ptr_state_val
);
extern int fc_solve_compare_lru_cache_keys(
const void * void_a, const void * void_b, void * param
);
#endif
#define DECLARE_MOVE_FUNCTION(name) \
extern void name( \
fc_solve_soft_thread_t * const soft_thread, \
fcs_kv_state_t * const raw_ptr_state_raw, \
fcs_derived_states_list_t * const derived_states_list \
)
#ifdef __cplusplus
}
#endif
#endif /* FC_SOLVE__FCS_H */
|