1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.40 10/18/16 */
/* */
/* CONSTRAINT OPERATIONS HEADER FILE */
/*******************************************************/
/*************************************************************/
/* Purpose: Provides functions for performing operations on */
/* constraint records including computing the intersection */
/* and union of constraint records. */
/* */
/* Principal Programmer(s): */
/* Gary D. Riley */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* */
/* 6.40: Removed LOCALE definition. */
/* */
/* Pragma once and other inclusion changes. */
/* */
/* Removed use of void pointers for specific */
/* data structures. */
/* */
/* Eval support for run time and bload only. */
/* */
/*************************************************************/
#ifndef _H_cstrnops
#pragma once
#define _H_cstrnops
#include "evaluatn.h"
#include "constrnt.h"
struct constraintRecord *IntersectConstraints(Environment *,struct constraintRecord *,struct constraintRecord *);
struct constraintRecord *UnionConstraints(Environment *,struct constraintRecord *,struct constraintRecord *);
#if (! BLOAD_ONLY)
void RemoveConstantFromConstraint(Environment *,int,void *,CONSTRAINT_RECORD *);
#endif
#endif /* _H_cstrnops */