lgcldpnd.h
来自「VC嵌入式CLips专家系统,实现战场环境的目标识别」· C头文件 代码 · 共 68 行
H
68 行
/*******************************************************/
/* "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_lgcldpnd
struct 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 + =
减小字号Ctrl + -
显示快捷键?