-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopr.h
55 lines (46 loc) · 2.13 KB
/
developr.h
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
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.24 05/17/06 */
/* */
/* DEVELOPER HEADER FILE */
/*******************************************************/
/*************************************************************/
/* Purpose: */
/* */
/* Principal Programmer(s): */
/* Gary D. Riley */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* */
/* 6.24: Converted INSTANCE_PATTERN_MATCHING to */
/* DEFRULE_CONSTRUCT. */
/* */
/*************************************************************/
#ifndef _H_developr
#define _H_developr
#ifdef LOCALE
#undef LOCALE
#endif
#ifdef _DEVELOPR_SOURCE_
#define LOCALE
#else
#define LOCALE extern
#endif
LOCALE void DeveloperCommands(void *);
LOCALE void PrimitiveTablesInfo(void *);
LOCALE void PrimitiveTablesUsage(void *);
LOCALE void EnableGCHeuristics(void *);
LOCALE void DisableGCHeuristics(void *);
#if DEFRULE_CONSTRUCT && DEFTEMPLATE_CONSTRUCT
LOCALE void ShowFactPatternNetwork(void *);
#endif
#if DEFRULE_CONSTRUCT && OBJECT_SYSTEM
LOCALE void PrintObjectPatternNetwork(void *);
#endif
#if OBJECT_SYSTEM
LOCALE void InstanceTableUsage(void *);
#endif
#endif