📄 retract.h
字号:
/*******************************************************/ /* "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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -