📄 cstrnpsr.h
字号:
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.24 07/01/05 */
/* */
/* CONSTRAINT PARSER HEADER FILE */
/*******************************************************/
/*************************************************************/
/* Purpose: Provides functions for parsing constraint */
/* declarations. */
/* */
/* Principal Programmer(s): */
/* Gary D. Riley */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* 6.24: Added allowed-classes slot facet. */
/* */
/* Renamed BOOLEAN macro type to intBool. */
/* */
/*************************************************************/
#ifndef _H_cstrnpsr
#define _H_cstrnpsr
#ifndef _H_constrnt
#include "constrnt.h"
#endif
#ifdef LOCALE
#undef LOCALE
#endif
#ifdef _CSTRNPSR_SOURCE_
#define LOCALE
#else
#define LOCALE extern
#endif
struct constraintParseRecord
{
unsigned int type : 1;
unsigned int range : 1;
unsigned int allowedSymbols : 1;
unsigned int allowedStrings : 1;
unsigned int allowedLexemes : 1;
unsigned int allowedFloats : 1;
unsigned int allowedIntegers : 1;
unsigned int allowedNumbers : 1;
unsigned int allowedValues : 1;
unsigned int allowedClasses : 1;
unsigned int allowedInstanceNames : 1;
unsigned int cardinality : 1;
};
typedef struct constraintParseRecord CONSTRAINT_PARSE_RECORD;
LOCALE intBool CheckConstraintParseConflicts(void *,CONSTRAINT_RECORD *);
LOCALE void AttributeConflictErrorMessage(void *,char *,char *);
#if (! RUN_TIME) && (! BLOAD_ONLY)
LOCALE void InitializeConstraintParseRecord(CONSTRAINT_PARSE_RECORD *);
LOCALE intBool StandardConstraint(char *);
LOCALE intBool ParseStandardConstraint(void *,char *,char *,
CONSTRAINT_RECORD *,
CONSTRAINT_PARSE_RECORD *,
int);
LOCALE void OverlayConstraint(void *,CONSTRAINT_PARSE_RECORD *,
CONSTRAINT_RECORD *,CONSTRAINT_RECORD *);
LOCALE void OverlayConstraintParseRecord(CONSTRAINT_PARSE_RECORD *,
CONSTRAINT_PARSE_RECORD *);
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -