#include <limits.h>
#include <stdlib.h>
#include <math.h>
#include "FCSFreecellData.h"
#include "FCSFreecellAlgorithm.h"
#include "PriorityQueue.h"
Go to the source code of this file.
Classes | |
class | FCSAStarSolvingAlgorithm< SolvingAlgorithmType > |
A-star method solver. More... | |
Defines | |
#define | FCS_A_STAR_CARDS_UNDER_SEQUENCES_EXPONENT 1.3 |
Parameter for state rating. | |
#define | FCS_A_STAR_SEQS_OVER_RENEGADE_CARDS_EXPONENT 1.3 |
Parameter for state rating. | |
Enumerations | |
enum | AStarWeightEnum { FCS_A_STAR_WEIGHT_CARDS_OUT = 0, FCS_A_STAR_WEIGHT_MAX_SEQUENCE_MOVE = 1, FCS_A_STAR_WEIGHT_CARDS_UNDER_SEQUENCES = 2, FCS_A_STAR_WEIGHT_SEQS_OVER_RENEGADE_CARDS = 3, FCS_A_STAR_WEIGHT_DEPTH = 4 } |
An enum that specifies the meaning of each A* weight. |
Definition in file FCSAStarSolvingAlgorithm.h.