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
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.40 03/31/19 */
/* */
/* SETUP HEADER FILE */
/*******************************************************/
/*************************************************************/
/* Purpose: This file is the general header file included by */
/* all of the .c source files. It contains global */
/* definitions and the compiler flags which must be edited */
/* to create a version for a specific machine, operating */
/* system, or feature set. */
/* */
/* Principal Programmer(s): */
/* Gary D. Riley */
/* Brian L. Dantes */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* */
/* 6.24: Default locale modification. */
/* */
/* Removed CONFLICT_RESOLUTION_STRATEGIES, */
/* DYNAMIC_SALIENCE, INCREMENTAL_RESET, */
/* LOGICAL_DEPENDENCIES, IMPERATIVE_METHODS, */
/* INSTANCE_PATTERN_MATCHING, and */
/* IMPERATIVE_MESSAGE_HANDLERS, and */
/* AUXILIARY_MESSAGE_HANDLERS compilation flags. */
/* */
/* Removed the SHORT_LINK_NAMES compilation flag. */
/* */
/* Renamed BOOLEAN macro type to intBool. */
/* */
/* 6.30: Removed conditional code for unsupported */
/* compilers/operating systems (IBM_MCW, */
/* MAC_MCW, IBM_ICB, IBM_TBC, IBM_ZTC, and */
/* IBM_SC). */
/* */
/* Renamed IBM_MSC and WIN_MVC compiler flags */
/* and IBM_GCC to WIN_GCC. */
/* */
/* Added LINUX and DARWIN compiler flags. */
/* */
/* Removed HELP_FUNCTIONS compilation flag and */
/* associated functionality. */
/* */
/* Removed EMACS_EDITOR compilation flag and */
/* associated functionality. */
/* */
/* Combined BASIC_IO and EXT_IO compilation */
/* flags into the single IO_FUNCTIONS flag. */
/* */
/* Used #ifndef for preprocessor definitions so */
/* they can be set at the project or makefile */
/* level. */
/* */
/* Removed ENVIRONMENT_API_ONLY compilation flag. */
/* */
/* Combined BASIC_IO and EXT_IO compilation */
/* flags into the IO_FUNCTIONS compilation flag. */
/* */
/* Changed the EX_MATH compilation flag to */
/* EXTENDED_MATH_FUNCTIONS. */
/* */
/* Removed VOID definition because of conflict */
/* with Windows.h header file. */
/* */
/* Removed deprecated definitions. */
/* */
/* The ALLOW_ENVIRONMENT_GLOBALS flag now */
/* defaults to 0. The use of functions enabled */
/* by this flag is deprecated. */
/* */
/* Removed support for BLOCK_MEMORY. */
/* */
/* 6.40: Removed globle definition. */
/* */
/* Pragma once and other inclusion changes. */
/* */
/* Added support for booleans with <stdbool.h>. */
/* */
/* ALLOW_ENVIRONMENT_GLOBALS no longer supported. */
/* */
/* Removed VAX_VMS support. */
/* */
/* UDF redesign. */
/* */
/*************************************************************/
/****************************************************************/
/* -------------------- COMPILER FLAGS ------------------------ */
/****************************************************************/
/*********************************************************************/
/* Flag denoting the environment in which the executable is to run. */
/* Only one of these flags should be turned on (set to 1) at a time. */
/*********************************************************************/
/* Fedora 26, Mint 18, and CentOS 7. */
/* The following are untested: */
/* Use GENERIC if nothing else is used. */
/***********************************************/
/* Some definitions for use with declarations. */
/***********************************************/
/*******************************************/
/* RUN_TIME: Specifies whether a run-time */
/* module is being created. */
/*******************************************/
/*************************************************/
/* DEFRULE_CONSTRUCT: Determines whether defrule */
/* construct is included. */
/*************************************************/
/************************************************/
/* DEFMODULE_CONSTRUCT: Determines whether the */
/* defmodule construct is included. */
/************************************************/
/****************************************************/
/* DEFTEMPLATE_CONSTRUCT: Determines whether facts */
/* and the deftemplate construct are included. */
/****************************************************/
/************************************************************/
/* FACT_SET_QUERIES: Determines if fact-set query functions */
/* such as any-factp and do-for-all-facts are included. */
/************************************************************/
/****************************************************/
/* DEFFACTS_CONSTRUCT: Determines whether deffacts */
/* construct is included. */
/****************************************************/
/************************************************/
/* DEFGLOBAL_CONSTRUCT: Determines whether the */
/* defglobal construct is included. */
/************************************************/
/**********************************************/
/* DEFFUNCTION_CONSTRUCT: Determines whether */
/* deffunction construct is included. */
/**********************************************/
/*********************************************/
/* DEFGENERIC_CONSTRUCT: Determines whether */
/* generic functions are included. */
/*********************************************/
/*****************************************************************/
/* OBJECT_SYSTEM: Determines whether object system is included. */
/* The MULTIFIELD_FUNCTIONS flag should also be on if you want */
/* to be able to manipulate multi-field slots. */
/*****************************************************************/
/*****************************************************************/
/* DEFINSTANCES_CONSTRUCT: Determines whether the definstances */
/* construct is enabled. */
/*****************************************************************/
/********************************************************************/
/* INSTANCE_SET_QUERIES: Determines if instance-set query functions */
/* such as any-instancep and do-for-all-instances are included. */
/********************************************************************/
/******************************************************************/
/* Check for consistencies associated with the defrule construct. */
/******************************************************************/
/*******************************************************************/
/* BLOAD/BSAVE_INSTANCES: Determines if the save/restore-instances */
/* functions can be enhanced to perform more quickly by using */
/* binary files */
/*******************************************************************/
/****************************************************************/
/* EXTENDED MATH PACKAGE FLAG: If this is on, then the extended */
/* math package functions will be available for use, (normal */
/* default). If this flag is off, then the extended math */
/* functions will not be available, and the 30K or so of space */
/* they require will be free. Usually a concern only on PC type */
/* machines. */
/****************************************************************/
/****************************************************************/
/* TEXT PROCESSING : Turn on this flag for support of the */
/* hierarchical lookup system. */
/****************************************************************/
/*************************************************************************/
/* BLOAD_ONLY: Enables bload command and disables the load command. */
/* BLOAD: Enables bload command. */
/* BLOAD_AND_BSAVE: Enables bload, and bsave commands. */
/*************************************************************************/
/********************************************************************/
/* CONSTRUCT COMPILER: If this flag is turned on, you can generate */
/* C code representing the constructs in the current environment. */
/* With the RUN_TIME flag set, this code can be compiled and */
/* linked to create a stand-alone run-time executable. */
/********************************************************************/
/************************************************/
/* IO_FUNCTIONS: Includes printout, read, open, */
/* close, format, and readline functions. */
/************************************************/
/************************************************/
/* STRING_FUNCTIONS: Includes string functions: */
/* str-length, str-compare, upcase, lowcase, */
/* sub-string, str-index, and eval. */
/************************************************/
/*********************************************/
/* MULTIFIELD_FUNCTIONS: Includes multifield */
/* functions: mv-subseq, mv-delete, */
/* mv-append, str-explode, str-implode. */
/*********************************************/
/****************************************************/
/* DEBUGGING_FUNCTIONS: Includes functions such as */
/* rules, facts, matches, ppdefrule, etc. */
/****************************************************/
/***************************************************/
/* PROFILING_FUNCTIONS: Enables code for profiling */
/* constructs and user functions. */
/***************************************************/
/*******************************************************************/
/* WINDOW_INTERFACE : Set this flag if you are recompiling any of */
/* the machine specific GUI interfaces. Currently, when enabled, */
/* this flag disables the more processing used by the help */
/* system. This flag also prevents any input or output being */
/* directly sent to stdin or stdout. */
/*******************************************************************/
/********************************************/
/* DEVELOPER: Enables code for debugging a */
/* development version of the executable. */
/********************************************/
/***************************/
/* Environment Definitions */
/***************************/
/*************************************************/
/* Any user defined global setup information can */
/* be included in the file usrsetup.h which is */
/* an empty file in the baseline version. */
/*************************************************/
/* _H_setup */