~ubuntu-branches/ubuntu/maverick/freecell-solver/maverick

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): RISKO Gergely
  • Date: 2002-04-06 11:35:18 UTC
  • Revision ID: james.westby@ubuntu.com-20020406113518-n398kvu45dixasoh
Tags: upstream-2.4.1
ImportĀ upstreamĀ versionĀ 2.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* config.h.in.  Generated automatically from configure.in by autoheader.  */
 
2
 
 
3
/* Define to empty if the keyword does not work.  */
 
4
#undef const
 
5
 
 
6
/* Define as the return type of signal handlers (int or void).  */
 
7
#undef RETSIGTYPE
 
8
 
 
9
/* Define to `unsigned' if <sys/types.h> doesn't define.  */
 
10
#undef size_t
 
11
 
 
12
/* Define if you have the ANSI C header files.  */
 
13
#undef STDC_HEADERS
 
14
 
 
15
#undef DEBUG_STATES
 
16
#undef COMPACT_STATES
 
17
#undef INDIRECT_STACK_STATES
 
18
 
 
19
#undef CARD_DEBUG_PRES
 
20
 
 
21
/*
 
22
    The sort margin size for the previous states array.
 
23
*/
 
24
#define PREV_STATES_SORT_MARGIN 32
 
25
/*
 
26
    The amount prev_states grow by each time it each resized.
 
27
    Should be greater than 0 and in order for the program to be
 
28
    efficient, should be much bigger than
 
29
    PREV_STATES_SORT_MARGIN.
 
30
*/
 
31
#define PREV_STATES_GROW_BY 128
 
32
 
 
33
/*
 
34
    The amount the pack pointers array grows by. Shouldn't be too high
 
35
    because it doesn't happen too often.
 
36
*/
 
37
#define IA_STATE_PACKS_GROW_BY 32
 
38
 
 
39
#define MAX_NUM_FREECELLS 4
 
40
 
 
41
#define MAX_NUM_STACKS 10
 
42
/*
 
43
 * The maximal number of initial cards that can be found in a stack. The rule
 
44
 * of the thumb is that it plus 13 should be a multiple of 4.
 
45
 * */
 
46
#define MAX_NUM_INITIAL_CARDS_IN_A_STACK 8
 
47
 
 
48
#define MAX_NUM_DECKS 2
 
49
 
 
50
#define FCS_STATE_STORAGE_INDIRECT 0
 
51
#define FCS_STATE_STORAGE_INTERNAL_HASH 1
 
52
#define FCS_STATE_STORAGE_LIBAVL_AVL_TREE 2
 
53
#define FCS_STATE_STORAGE_LIBAVL_REDBLACK_TREE 3
 
54
#define FCS_STATE_STORAGE_LIBREDBLACK_TREE 4
 
55
#define FCS_STATE_STORAGE_GLIB_TREE 5
 
56
#define FCS_STATE_STORAGE_GLIB_HASH 6
 
57
#define FCS_STATE_STORAGE_DB_FILE 7
 
58
 
 
59
#define FCS_STACK_STORAGE_INTERNAL_HASH 0
 
60
#define FCS_STACK_STORAGE_LIBAVL_AVL_TREE 1
 
61
#define FCS_STACK_STORAGE_LIBAVL_REDBLACK_TREE 2
 
62
#define FCS_STACK_STORAGE_LIBREDBLACK_TREE 3
 
63
#define FCS_STACK_STORAGE_GLIB_TREE 4
 
64
#define FCS_STACK_STORAGE_GLIB_HASH 5
 
65
 
 
66
#undef FCS_STATE_STORAGE
 
67
#undef FCS_STACK_STORAGE
 
68
 
 
69
/* Define if you have the strdup function.  */
 
70
#undef HAVE_STRDUP
 
71
 
 
72
/* Define if you have the <dlfcn.h> header file.  */
 
73
#undef HAVE_DLFCN_H
 
74
 
 
75
/* Define if you have the <limits.h> header file.  */
 
76
#undef HAVE_LIMITS_H
 
77
 
 
78
/* Define if you have the avl library (-lavl).  */
 
79
#undef HAVE_LIBAVL
 
80
 
 
81
/* Define if you have the glib library (-lglib).  */
 
82
#undef HAVE_LIBGLIB
 
83
 
 
84
/* Define if you have the m library (-lm).  */
 
85
#undef HAVE_LIBM
 
86
 
 
87
/* Define if you have the redblack library (-lredblack).  */
 
88
#undef HAVE_LIBREDBLACK
 
89
 
 
90
/* Name of package */
 
91
#undef PACKAGE
 
92
 
 
93
/* Version number of package */
 
94
#undef VERSION
 
95