📄 rulecstr.h
字号:
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.05 04/09/97 */ /* */ /* RULE CONSTRAINTS HEADER FILE */ /*******************************************************//*************************************************************//* Purpose: Provides routines for detecting constraint *//* conflicts in the LHS and RHS of rules. *//* *//* Principal Programmer(s): *//* Gary D. Riley *//* *//* Contributing Programmer(s): *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_rulecstr#define _H_rulecstr#ifdef LOCALE#undef LOCALE#endif#ifdef _RULECSTR_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ANSI_COMPILER LOCALE struct lhsParseNode *GetExpressionVarConstraints(struct lhsParseNode *); LOCALE struct lhsParseNode *DeriveVariableConstraints(struct lhsParseNode *); LOCALE BOOLEAN ProcessConnectedConstraints(struct lhsParseNode *,struct lhsParseNode *,struct lhsParseNode *); LOCALE VOID ConstraintReferenceErrorMessage(struct symbolHashNode *, struct lhsParseNode *, int,int, struct symbolHashNode *, int); LOCALE BOOLEAN CheckRHSForConstraintErrors(struct expr *,struct lhsParseNode *);#else LOCALE struct lhsParseNode *GetExpressionVarConstraints(); LOCALE struct lhsParseNode *DeriveVariableConstraints(); LOCALE BOOLEAN ProcessConnectedConstraints(); LOCALE VOID ConstraintReferenceErrorMessage(); LOCALE BOOLEAN CheckRHSForConstraintErrors();#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -