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
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.40 08/25/16 */
/* */
/* DEVELOPER HEADER FILE */
/*******************************************************/
/*************************************************************/
/* Purpose: */
/* */
/* Principal Programmer(s): */
/* Gary D. Riley */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* */
/* 6.24: Converted INSTANCE_PATTERN_MATCHING to */
/* DEFRULE_CONSTRUCT. */
/* */
/* 6.30: Added support for hashed alpha memories. */
/* */
/* Changed garbage collection algorithm. */
/* Functions enable-gc-heuristics and */
/* disable-gc-heuristics are no longer supported. */
/* */
/* Changed integer type/precision. */
/* */
/* 6.40: Removed LOCALE definition. */
/* */
/* Pragma once and other inclusion changes. */
/* */
/* Added support for booleans with <stdbool.h>. */
/* */
/* Removed use of void pointers for specific */
/* data structures. */
/* */
/* UDF redesign. */
/* */
/*************************************************************/
#ifndef _H_developr
#pragma once
#define _H_developr
void DeveloperCommands(Environment *);
void PrimitiveTablesInfoCommand(Environment *,UDFContext *,UDFValue *);
void PrimitiveTablesUsageCommand(Environment *,UDFContext *,UDFValue *);
#if DEFRULE_CONSTRUCT && DEFTEMPLATE_CONSTRUCT
void ShowFactPatternNetworkCommand(Environment *,UDFContext *,UDFValue *);
void ValidateFactIntegrityCommand(Environment *,UDFContext *,UDFValue *);
#endif
#if DEFRULE_CONSTRUCT && OBJECT_SYSTEM
void PrintObjectPatternNetworkCommand(Environment *,UDFContext *,UDFValue *);
#endif
#if OBJECT_SYSTEM
void InstanceTableUsageCommand(Environment *,UDFContext *,UDFValue *);
#endif
#if DEFRULE_CONSTRUCT
void ValidateBetaMemoriesCommand(Environment *,UDFContext *,UDFValue *);
#endif
#endif /* _H_developr */