rulecstr.h
来自「NASA 开发使用的一个专家系统」· C头文件 代码 · 共 55 行
H
55 行
/*******************************************************/ /* "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 + =
减小字号Ctrl + -
显示快捷键?