?? lgcldpnd.h
字號:
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.24 06/05/06 */ /* */ /* LOGICAL DEPENDENCIES HEADER FILE */ /*******************************************************//*************************************************************//* Purpose: Provide support routines for managing truth *//* maintenance using the logical conditional element. *//* *//* Principal Programmer(s): *//* Gary D. Riley *//* *//* Contributing Programmer(s): *//* *//* Revision History: *//* *//* 6.24: Renamed BOOLEAN macro type to intBool. *//* *//*************************************************************/#ifndef _H_lgcldpnd#define _H_lgcldpndstruct dependency { void *dPtr; struct dependency *next; };#ifndef _H_match#include "match.h"#endif#ifndef _H_pattern#include "pattern.h"#endif#ifdef LOCALE#undef LOCALE#endif#ifdef _LGCLDPND_SOURCE_#define LOCALE#else#define LOCALE extern#endif LOCALE intBool AddLogicalDependencies(void *,struct patternEntity *,int); LOCALE void RemoveEntityDependencies(void *,struct patternEntity *); LOCALE void RemovePMDependencies(void *,struct partialMatch *); LOCALE void DestroyPMDependencies(void *,struct partialMatch *); LOCALE void RemoveLogicalSupport(void *,struct partialMatch *); LOCALE void ForceLogicalRetractions(void *); LOCALE void Dependencies(void *,struct patternEntity *); LOCALE void Dependents(void *,struct patternEntity *); LOCALE void DependenciesCommand(void *); LOCALE void DependentsCommand(void *); LOCALE void ReturnEntityDependencies(void *,struct patternEntity *);#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -