retract.h
来自「NASA 开发使用的一个专家系统」· C头文件 代码 · 共 67 行
H
67 行
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.05 04/09/97 */ /* */ /* RETRACT HEADER FILE */ /*******************************************************//*************************************************************//* Purpose: Handles join network activity associated with *//* with the removal of a data entity such as a fact or *//* instance. *//* *//* Principal Programmer(s): *//* Gary D. Riley *//* *//* Contributing Programmer(s): *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_retract#define _H_retract#ifndef _H_match#include "match.h" #endif#ifndef _H_network#include "network.h"#endif#ifdef LOCALE#undef LOCALE#endif#ifdef _RETRACT_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ANSI_COMPILERLOCALE VOID NetworkRetract(struct patternMatch *);LOCALE VOID PosEntryRetract(struct joinNode *,struct alphaMatch *,struct partialMatch *,int,int);LOCALE VOID ReturnPartialMatch(struct partialMatch *);LOCALE VOID FlushGarbagePartialMatches(void);LOCALE VOID NegEntryRetract(struct joinNode *,struct partialMatch *,int);#elseLOCALE VOID NetworkRetract();LOCALE VOID PosEntryRetract();LOCALE VOID ReturnPartialMatch();LOCALE VOID FlushGarbagePartialMatches();LOCALE VOID NegEntryRetract();#endif#ifndef _RETRACT_SOURCE_ extern struct partialMatch *GarbagePartialMatches; extern struct alphaMatch *GarbageAlphaMatches;#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?