⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lgcldpnd.h

📁 clips源代码
💻 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 + -