📄 reorder.h
字号:
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.20 01/31/02 */
/* */
/* REORDER HEADER FILE */
/*******************************************************/
/*************************************************************/
/* Purpose: Provides routines necessary for converting the */
/* the LHS of a rule into an appropriate form suitable for */
/* the KB Rete topology. This includes transforming the */
/* LHS so there is at most one "or" CE (and this is the */
/* first CE of the LHS if it is used), adding initial */
/* patterns to the LHS (if no LHS is specified or a "test" */
/* or "not" CE is the first pattern within an "and" CE), */
/* removing redundant CEs, and determining appropriate */
/* information on nesting for implementing joins from the */
/* right. */
/* */
/* Principal Programmer(s): */
/* Gary D. Riley */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* */
/*************************************************************/
#ifndef _H_reorder
#define _H_reorder
struct lhsParseNode;
#ifndef _H_expressn
#include "expressn.h"
#endif
#ifndef _H_ruledef
#include "ruledef.h"
#endif
#ifndef _H_pattern
#include "pattern.h"
#endif
#ifdef LOCALE
#undef LOCALE
#endif
#ifdef _REORDER_SOURCE_
#define LOCALE
#else
#define LOCALE extern
#endif
/***********************************************************************/
/* lhsParseNode structure: Stores information about the intermediate */
/* parsed representation of the lhs of a rule. */
/***********************************************************************/
struct lhsParseNode
{
unsigned short type;
void *value;
unsigned int negated : 1;
unsigned int logical : 1;
unsigned int multifieldSlot : 1;
unsigned int bindingVariable : 1;
unsigned int derivedConstraints : 1;
unsigned int userCE : 1;
unsigned int whichCE : 7;
unsigned int marked : 1;
unsigned int withinMultifieldSlot : 1;
unsigned short multiFieldsBefore;
unsigned short multiFieldsAfter;
unsigned short singleFieldsBefore;
unsigned short singleFieldsAfter;
struct constraintRecord *constraints;
struct lhsParseNode *referringNode;
struct patternParser *patternType;
short pattern;
short index;
struct symbolHashNode *slot;
short slotNumber;
int beginNandDepth;
int endNandDepth;
struct expr *networkTest;
struct lhsParseNode *expression;
void *userData;
struct lhsParseNode *right;
struct lhsParseNode *bottom;
};
LOCALE struct lhsParseNode *ReorderPatterns(void *,struct lhsParseNode *,int *);
LOCALE struct lhsParseNode *CopyLHSParseNodes(void *,struct lhsParseNode *);
LOCALE void CopyLHSParseNode(void *,struct lhsParseNode *,struct lhsParseNode *,int);
LOCALE struct lhsParseNode *GetLHSParseNode(void *);
LOCALE void ReturnLHSParseNodes(void *,struct lhsParseNode *);
LOCALE struct lhsParseNode *ExpressionToLHSParseNodes(void *,struct expr *);
LOCALE struct expr *LHSParseNodesToExpression(void *,struct lhsParseNode *);
LOCALE void AddInitialPatterns(void *,struct lhsParseNode *);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -