clipsruby 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ext/clipsruby/agenda.c +1373 -0
- data/ext/clipsruby/agenda.h +169 -0
- data/ext/clipsruby/analysis.c +1142 -0
- data/ext/clipsruby/analysis.h +61 -0
- data/ext/clipsruby/argacces.c +526 -0
- data/ext/clipsruby/argacces.h +77 -0
- data/ext/clipsruby/bload.c +884 -0
- data/ext/clipsruby/bload.h +94 -0
- data/ext/clipsruby/bmathfun.c +557 -0
- data/ext/clipsruby/bmathfun.h +66 -0
- data/ext/clipsruby/bsave.c +634 -0
- data/ext/clipsruby/bsave.h +130 -0
- data/ext/clipsruby/classcom.c +976 -0
- data/ext/clipsruby/classcom.h +115 -0
- data/ext/clipsruby/classexm.c +1376 -0
- data/ext/clipsruby/classexm.h +97 -0
- data/ext/clipsruby/classfun.c +1392 -0
- data/ext/clipsruby/classfun.h +164 -0
- data/ext/clipsruby/classinf.c +1245 -0
- data/ext/clipsruby/classinf.h +94 -0
- data/ext/clipsruby/classini.c +843 -0
- data/ext/clipsruby/classini.h +75 -0
- data/ext/clipsruby/classpsr.c +957 -0
- data/ext/clipsruby/classpsr.h +73 -0
- data/ext/clipsruby/clips.h +133 -0
- data/ext/clipsruby/clipsruby.c +619 -0
- data/ext/clipsruby/clsltpsr.c +931 -0
- data/ext/clipsruby/clsltpsr.h +72 -0
- data/ext/clipsruby/commline.c +1217 -0
- data/ext/clipsruby/commline.h +131 -0
- data/ext/clipsruby/conscomp.c +1593 -0
- data/ext/clipsruby/conscomp.h +150 -0
- data/ext/clipsruby/constant.h +264 -0
- data/ext/clipsruby/constrct.c +1090 -0
- data/ext/clipsruby/constrct.h +216 -0
- data/ext/clipsruby/constrnt.c +554 -0
- data/ext/clipsruby/constrnt.h +132 -0
- data/ext/clipsruby/crstrtgy.c +1088 -0
- data/ext/clipsruby/crstrtgy.h +85 -0
- data/ext/clipsruby/cstrcbin.c +185 -0
- data/ext/clipsruby/cstrcbin.h +61 -0
- data/ext/clipsruby/cstrccmp.h +43 -0
- data/ext/clipsruby/cstrccom.c +1791 -0
- data/ext/clipsruby/cstrccom.h +115 -0
- data/ext/clipsruby/cstrcpsr.c +835 -0
- data/ext/clipsruby/cstrcpsr.h +97 -0
- data/ext/clipsruby/cstrnbin.c +282 -0
- data/ext/clipsruby/cstrnbin.h +55 -0
- data/ext/clipsruby/cstrnchk.c +826 -0
- data/ext/clipsruby/cstrnchk.h +91 -0
- data/ext/clipsruby/cstrncmp.c +238 -0
- data/ext/clipsruby/cstrncmp.h +57 -0
- data/ext/clipsruby/cstrnops.c +1176 -0
- data/ext/clipsruby/cstrnops.h +47 -0
- data/ext/clipsruby/cstrnpsr.c +1394 -0
- data/ext/clipsruby/cstrnpsr.h +88 -0
- data/ext/clipsruby/cstrnutl.c +564 -0
- data/ext/clipsruby/cstrnutl.h +54 -0
- data/ext/clipsruby/default.c +454 -0
- data/ext/clipsruby/default.h +57 -0
- data/ext/clipsruby/defins.c +971 -0
- data/ext/clipsruby/defins.h +127 -0
- data/ext/clipsruby/developr.c +677 -0
- data/ext/clipsruby/developr.h +69 -0
- data/ext/clipsruby/dffctbin.c +477 -0
- data/ext/clipsruby/dffctbin.h +76 -0
- data/ext/clipsruby/dffctbsc.c +308 -0
- data/ext/clipsruby/dffctbsc.h +72 -0
- data/ext/clipsruby/dffctcmp.c +297 -0
- data/ext/clipsruby/dffctcmp.h +44 -0
- data/ext/clipsruby/dffctdef.c +364 -0
- data/ext/clipsruby/dffctdef.h +104 -0
- data/ext/clipsruby/dffctpsr.c +179 -0
- data/ext/clipsruby/dffctpsr.h +49 -0
- data/ext/clipsruby/dffnxbin.c +520 -0
- data/ext/clipsruby/dffnxbin.h +67 -0
- data/ext/clipsruby/dffnxcmp.c +378 -0
- data/ext/clipsruby/dffnxcmp.h +54 -0
- data/ext/clipsruby/dffnxexe.c +241 -0
- data/ext/clipsruby/dffnxexe.h +58 -0
- data/ext/clipsruby/dffnxfun.c +1192 -0
- data/ext/clipsruby/dffnxfun.h +155 -0
- data/ext/clipsruby/dffnxpsr.c +514 -0
- data/ext/clipsruby/dffnxpsr.h +57 -0
- data/ext/clipsruby/dfinsbin.c +509 -0
- data/ext/clipsruby/dfinsbin.h +66 -0
- data/ext/clipsruby/dfinscmp.c +345 -0
- data/ext/clipsruby/dfinscmp.h +48 -0
- data/ext/clipsruby/drive.c +1191 -0
- data/ext/clipsruby/drive.h +65 -0
- data/ext/clipsruby/emathfun.c +1213 -0
- data/ext/clipsruby/emathfun.h +99 -0
- data/ext/clipsruby/engine.c +1568 -0
- data/ext/clipsruby/engine.h +203 -0
- data/ext/clipsruby/entities.h +276 -0
- data/ext/clipsruby/envrnbld.c +514 -0
- data/ext/clipsruby/envrnbld.h +40 -0
- data/ext/clipsruby/envrnmnt.c +257 -0
- data/ext/clipsruby/envrnmnt.h +112 -0
- data/ext/clipsruby/evaluatn.c +1736 -0
- data/ext/clipsruby/evaluatn.h +211 -0
- data/ext/clipsruby/expressn.c +494 -0
- data/ext/clipsruby/expressn.h +154 -0
- data/ext/clipsruby/exprnbin.c +538 -0
- data/ext/clipsruby/exprnbin.h +60 -0
- data/ext/clipsruby/exprnops.c +564 -0
- data/ext/clipsruby/exprnops.h +67 -0
- data/ext/clipsruby/exprnpsr.c +1112 -0
- data/ext/clipsruby/exprnpsr.h +98 -0
- data/ext/clipsruby/extconf.rb +2 -0
- data/ext/clipsruby/extnfunc.c +1015 -0
- data/ext/clipsruby/extnfunc.h +157 -0
- data/ext/clipsruby/factbin.c +447 -0
- data/ext/clipsruby/factbin.h +56 -0
- data/ext/clipsruby/factbld.c +1035 -0
- data/ext/clipsruby/factbld.h +63 -0
- data/ext/clipsruby/factcmp.c +386 -0
- data/ext/clipsruby/factcmp.h +46 -0
- data/ext/clipsruby/factcom.c +759 -0
- data/ext/clipsruby/factcom.h +80 -0
- data/ext/clipsruby/factfile.c +1761 -0
- data/ext/clipsruby/factfile.h +54 -0
- data/ext/clipsruby/factfun.c +682 -0
- data/ext/clipsruby/factfun.h +77 -0
- data/ext/clipsruby/factgen.c +1305 -0
- data/ext/clipsruby/factgen.h +229 -0
- data/ext/clipsruby/facthsh.c +438 -0
- data/ext/clipsruby/facthsh.h +81 -0
- data/ext/clipsruby/factlhs.c +250 -0
- data/ext/clipsruby/factlhs.h +54 -0
- data/ext/clipsruby/factmch.c +905 -0
- data/ext/clipsruby/factmch.h +68 -0
- data/ext/clipsruby/factmngr.c +3373 -0
- data/ext/clipsruby/factmngr.h +325 -0
- data/ext/clipsruby/factprt.c +498 -0
- data/ext/clipsruby/factprt.h +60 -0
- data/ext/clipsruby/factqpsr.c +796 -0
- data/ext/clipsruby/factqpsr.h +61 -0
- data/ext/clipsruby/factqury.c +1267 -0
- data/ext/clipsruby/factqury.h +112 -0
- data/ext/clipsruby/factrete.c +978 -0
- data/ext/clipsruby/factrete.h +70 -0
- data/ext/clipsruby/factrhs.c +667 -0
- data/ext/clipsruby/factrhs.h +55 -0
- data/ext/clipsruby/filecom.c +353 -0
- data/ext/clipsruby/filecom.h +137 -0
- data/ext/clipsruby/filertr.c +481 -0
- data/ext/clipsruby/filertr.h +94 -0
- data/ext/clipsruby/fileutil.c +1020 -0
- data/ext/clipsruby/fileutil.h +50 -0
- data/ext/clipsruby/generate.c +1079 -0
- data/ext/clipsruby/generate.h +57 -0
- data/ext/clipsruby/genrcbin.c +902 -0
- data/ext/clipsruby/genrcbin.h +69 -0
- data/ext/clipsruby/genrccmp.c +640 -0
- data/ext/clipsruby/genrccmp.h +59 -0
- data/ext/clipsruby/genrccom.c +2017 -0
- data/ext/clipsruby/genrccom.h +119 -0
- data/ext/clipsruby/genrcexe.c +737 -0
- data/ext/clipsruby/genrcexe.h +73 -0
- data/ext/clipsruby/genrcfun.c +890 -0
- data/ext/clipsruby/genrcfun.h +185 -0
- data/ext/clipsruby/genrcpsr.c +1618 -0
- data/ext/clipsruby/genrcpsr.h +80 -0
- data/ext/clipsruby/globlbin.c +458 -0
- data/ext/clipsruby/globlbin.h +71 -0
- data/ext/clipsruby/globlbsc.c +361 -0
- data/ext/clipsruby/globlbsc.h +83 -0
- data/ext/clipsruby/globlcmp.c +330 -0
- data/ext/clipsruby/globlcmp.h +52 -0
- data/ext/clipsruby/globlcom.c +289 -0
- data/ext/clipsruby/globlcom.h +63 -0
- data/ext/clipsruby/globldef.c +1087 -0
- data/ext/clipsruby/globldef.h +151 -0
- data/ext/clipsruby/globlpsr.c +530 -0
- data/ext/clipsruby/globlpsr.h +59 -0
- data/ext/clipsruby/immthpsr.c +431 -0
- data/ext/clipsruby/immthpsr.h +55 -0
- data/ext/clipsruby/incrrset.c +530 -0
- data/ext/clipsruby/incrrset.h +73 -0
- data/ext/clipsruby/inherpsr.c +850 -0
- data/ext/clipsruby/inherpsr.h +52 -0
- data/ext/clipsruby/inscom.c +2076 -0
- data/ext/clipsruby/inscom.h +182 -0
- data/ext/clipsruby/insfile.c +1764 -0
- data/ext/clipsruby/insfile.h +96 -0
- data/ext/clipsruby/insfun.c +1451 -0
- data/ext/clipsruby/insfun.h +134 -0
- data/ext/clipsruby/insmngr.c +2550 -0
- data/ext/clipsruby/insmngr.h +125 -0
- data/ext/clipsruby/insmoddp.c +1041 -0
- data/ext/clipsruby/insmoddp.h +91 -0
- data/ext/clipsruby/insmult.c +804 -0
- data/ext/clipsruby/insmult.h +62 -0
- data/ext/clipsruby/inspsr.c +602 -0
- data/ext/clipsruby/inspsr.h +60 -0
- data/ext/clipsruby/insquery.c +1278 -0
- data/ext/clipsruby/insquery.h +115 -0
- data/ext/clipsruby/insqypsr.c +729 -0
- data/ext/clipsruby/insqypsr.h +63 -0
- data/ext/clipsruby/iofun.c +2045 -0
- data/ext/clipsruby/iofun.h +116 -0
- data/ext/clipsruby/lgcldpnd.c +644 -0
- data/ext/clipsruby/lgcldpnd.h +75 -0
- data/ext/clipsruby/main.c +112 -0
- data/ext/clipsruby/match.h +142 -0
- data/ext/clipsruby/memalloc.c +481 -0
- data/ext/clipsruby/memalloc.h +197 -0
- data/ext/clipsruby/miscfun.c +1801 -0
- data/ext/clipsruby/miscfun.h +132 -0
- data/ext/clipsruby/modulbin.c +607 -0
- data/ext/clipsruby/modulbin.h +84 -0
- data/ext/clipsruby/modulbsc.c +347 -0
- data/ext/clipsruby/modulbsc.h +67 -0
- data/ext/clipsruby/modulcmp.c +499 -0
- data/ext/clipsruby/modulcmp.h +54 -0
- data/ext/clipsruby/moduldef.c +817 -0
- data/ext/clipsruby/moduldef.h +271 -0
- data/ext/clipsruby/modulpsr.c +1150 -0
- data/ext/clipsruby/modulpsr.h +69 -0
- data/ext/clipsruby/modulutl.c +1036 -0
- data/ext/clipsruby/modulutl.h +84 -0
- data/ext/clipsruby/msgcom.c +1221 -0
- data/ext/clipsruby/msgcom.h +125 -0
- data/ext/clipsruby/msgfun.c +1076 -0
- data/ext/clipsruby/msgfun.h +118 -0
- data/ext/clipsruby/msgpass.c +1441 -0
- data/ext/clipsruby/msgpass.h +103 -0
- data/ext/clipsruby/msgpsr.c +698 -0
- data/ext/clipsruby/msgpsr.h +73 -0
- data/ext/clipsruby/multifld.c +1404 -0
- data/ext/clipsruby/multifld.h +130 -0
- data/ext/clipsruby/multifun.c +2182 -0
- data/ext/clipsruby/multifun.h +102 -0
- data/ext/clipsruby/network.h +142 -0
- data/ext/clipsruby/objbin.c +1522 -0
- data/ext/clipsruby/objbin.h +79 -0
- data/ext/clipsruby/objcmp.c +1507 -0
- data/ext/clipsruby/objcmp.h +71 -0
- data/ext/clipsruby/object.h +260 -0
- data/ext/clipsruby/objrtbin.c +701 -0
- data/ext/clipsruby/objrtbin.h +79 -0
- data/ext/clipsruby/objrtbld.c +2393 -0
- data/ext/clipsruby/objrtbld.h +66 -0
- data/ext/clipsruby/objrtcmp.c +734 -0
- data/ext/clipsruby/objrtcmp.h +66 -0
- data/ext/clipsruby/objrtfnx.c +1330 -0
- data/ext/clipsruby/objrtfnx.h +222 -0
- data/ext/clipsruby/objrtgen.c +736 -0
- data/ext/clipsruby/objrtgen.h +63 -0
- data/ext/clipsruby/objrtmch.c +1524 -0
- data/ext/clipsruby/objrtmch.h +160 -0
- data/ext/clipsruby/parsefun.c +415 -0
- data/ext/clipsruby/parsefun.h +67 -0
- data/ext/clipsruby/pattern.c +1265 -0
- data/ext/clipsruby/pattern.h +163 -0
- data/ext/clipsruby/pprint.c +328 -0
- data/ext/clipsruby/pprint.h +79 -0
- data/ext/clipsruby/prccode.c +1478 -0
- data/ext/clipsruby/prccode.h +145 -0
- data/ext/clipsruby/prcdrfun.c +640 -0
- data/ext/clipsruby/prcdrfun.h +95 -0
- data/ext/clipsruby/prcdrpsr.c +1068 -0
- data/ext/clipsruby/prcdrpsr.h +79 -0
- data/ext/clipsruby/prdctfun.c +869 -0
- data/ext/clipsruby/prdctfun.h +77 -0
- data/ext/clipsruby/prntutil.c +878 -0
- data/ext/clipsruby/prntutil.h +125 -0
- data/ext/clipsruby/proflfun.c +827 -0
- data/ext/clipsruby/proflfun.h +118 -0
- data/ext/clipsruby/reorder.c +2082 -0
- data/ext/clipsruby/reorder.h +172 -0
- data/ext/clipsruby/reteutil.c +1732 -0
- data/ext/clipsruby/reteutil.h +111 -0
- data/ext/clipsruby/retract.c +710 -0
- data/ext/clipsruby/retract.h +74 -0
- data/ext/clipsruby/router.c +737 -0
- data/ext/clipsruby/router.h +147 -0
- data/ext/clipsruby/rulebin.c +1136 -0
- data/ext/clipsruby/rulebin.h +153 -0
- data/ext/clipsruby/rulebld.c +1328 -0
- data/ext/clipsruby/rulebld.h +62 -0
- data/ext/clipsruby/rulebsc.c +517 -0
- data/ext/clipsruby/rulebsc.h +91 -0
- data/ext/clipsruby/rulecmp.c +733 -0
- data/ext/clipsruby/rulecmp.h +63 -0
- data/ext/clipsruby/rulecom.c +1583 -0
- data/ext/clipsruby/rulecom.h +116 -0
- data/ext/clipsruby/rulecstr.c +892 -0
- data/ext/clipsruby/rulecstr.h +53 -0
- data/ext/clipsruby/ruledef.c +559 -0
- data/ext/clipsruby/ruledef.h +179 -0
- data/ext/clipsruby/ruledlt.c +599 -0
- data/ext/clipsruby/ruledlt.h +58 -0
- data/ext/clipsruby/rulelhs.c +1216 -0
- data/ext/clipsruby/rulelhs.h +52 -0
- data/ext/clipsruby/rulepsr.c +1073 -0
- data/ext/clipsruby/rulepsr.h +61 -0
- data/ext/clipsruby/scanner.c +856 -0
- data/ext/clipsruby/scanner.h +112 -0
- data/ext/clipsruby/setup.h +488 -0
- data/ext/clipsruby/sortfun.c +433 -0
- data/ext/clipsruby/sortfun.h +55 -0
- data/ext/clipsruby/strngfun.c +1173 -0
- data/ext/clipsruby/strngfun.h +96 -0
- data/ext/clipsruby/strngrtr.c +523 -0
- data/ext/clipsruby/strngrtr.h +97 -0
- data/ext/clipsruby/symblbin.c +648 -0
- data/ext/clipsruby/symblbin.h +64 -0
- data/ext/clipsruby/symblcmp.c +893 -0
- data/ext/clipsruby/symblcmp.h +61 -0
- data/ext/clipsruby/symbol.c +1961 -0
- data/ext/clipsruby/symbol.h +243 -0
- data/ext/clipsruby/sysdep.c +894 -0
- data/ext/clipsruby/sysdep.h +164 -0
- data/ext/clipsruby/textpro.c +1388 -0
- data/ext/clipsruby/textpro.h +77 -0
- data/ext/clipsruby/tmpltbin.c +609 -0
- data/ext/clipsruby/tmpltbin.h +108 -0
- data/ext/clipsruby/tmpltbsc.c +327 -0
- data/ext/clipsruby/tmpltbsc.h +87 -0
- data/ext/clipsruby/tmpltcmp.c +450 -0
- data/ext/clipsruby/tmpltcmp.h +57 -0
- data/ext/clipsruby/tmpltdef.c +584 -0
- data/ext/clipsruby/tmpltdef.h +155 -0
- data/ext/clipsruby/tmpltfun.c +2477 -0
- data/ext/clipsruby/tmpltfun.h +122 -0
- data/ext/clipsruby/tmpltlhs.c +379 -0
- data/ext/clipsruby/tmpltlhs.h +50 -0
- data/ext/clipsruby/tmpltpsr.c +819 -0
- data/ext/clipsruby/tmpltpsr.h +59 -0
- data/ext/clipsruby/tmpltrhs.c +595 -0
- data/ext/clipsruby/tmpltrhs.h +55 -0
- data/ext/clipsruby/tmpltutl.c +637 -0
- data/ext/clipsruby/tmpltutl.h +82 -0
- data/ext/clipsruby/userdata.c +156 -0
- data/ext/clipsruby/userdata.h +72 -0
- data/ext/clipsruby/userfunctions.c +70 -0
- data/ext/clipsruby/usrsetup.h +7 -0
- data/ext/clipsruby/utility.c +1594 -0
- data/ext/clipsruby/utility.h +250 -0
- data/ext/clipsruby/watch.c +865 -0
- data/ext/clipsruby/watch.h +124 -0
- data/lib/clipsruby.rb +1 -0
- metadata +388 -0
@@ -0,0 +1,124 @@
|
|
1
|
+
/*******************************************************/
|
2
|
+
/* "C" Language Integrated Production System */
|
3
|
+
/* */
|
4
|
+
/* CLIPS Version 6.40 08/25/16 */
|
5
|
+
/* */
|
6
|
+
/* WATCH HEADER FILE */
|
7
|
+
/*******************************************************/
|
8
|
+
|
9
|
+
/*************************************************************/
|
10
|
+
/* Purpose: Support functions for the watch and unwatch */
|
11
|
+
/* commands. */
|
12
|
+
/* */
|
13
|
+
/* Principal Programmer(s): */
|
14
|
+
/* Gary D. Riley */
|
15
|
+
/* */
|
16
|
+
/* Contributing Programmer(s): */
|
17
|
+
/* */
|
18
|
+
/* Revision History: */
|
19
|
+
/* */
|
20
|
+
/* 6.23: Changed name of variable log to logName */
|
21
|
+
/* because of Unix compiler warnings of shadowed */
|
22
|
+
/* definitions. */
|
23
|
+
/* */
|
24
|
+
/* 6.24: Renamed BOOLEAN macro type to intBool. */
|
25
|
+
/* */
|
26
|
+
/* Added EnvSetWatchItem function. */
|
27
|
+
/* */
|
28
|
+
/* 6.30: Removed conditional code for unsupported */
|
29
|
+
/* compilers/operating systems (IBM_MCW, */
|
30
|
+
/* MAC_MCW, and IBM_TBC). */
|
31
|
+
/* */
|
32
|
+
/* Added const qualifiers to remove C++ */
|
33
|
+
/* deprecation warnings. */
|
34
|
+
/* */
|
35
|
+
/* Converted API macros to function calls. */
|
36
|
+
/* */
|
37
|
+
/* 6.40: Removed LOCALE definition. */
|
38
|
+
/* */
|
39
|
+
/* Pragma once and other inclusion changes. */
|
40
|
+
/* */
|
41
|
+
/* Added support for booleans with <stdbool.h>. */
|
42
|
+
/* */
|
43
|
+
/* Removed use of void pointers for specific */
|
44
|
+
/* data structures. */
|
45
|
+
/* */
|
46
|
+
/* ALLOW_ENVIRONMENT_GLOBALS no longer supported. */
|
47
|
+
/* */
|
48
|
+
/* UDF redesign. */
|
49
|
+
/* */
|
50
|
+
/*************************************************************/
|
51
|
+
|
52
|
+
#ifndef _H_watch
|
53
|
+
|
54
|
+
#pragma once
|
55
|
+
|
56
|
+
#define _H_watch
|
57
|
+
|
58
|
+
#include "expressn.h"
|
59
|
+
|
60
|
+
#define WATCH_DATA 54
|
61
|
+
|
62
|
+
typedef struct watchItemRecord WatchItemRecord;
|
63
|
+
|
64
|
+
typedef enum
|
65
|
+
{
|
66
|
+
ALL,
|
67
|
+
FACTS,
|
68
|
+
INSTANCES,
|
69
|
+
SLOTS,
|
70
|
+
RULES,
|
71
|
+
ACTIVATIONS,
|
72
|
+
MESSAGES,
|
73
|
+
MESSAGE_HANDLERS,
|
74
|
+
GENERIC_FUNCTIONS,
|
75
|
+
METHODS,
|
76
|
+
DEFFUNCTIONS,
|
77
|
+
COMPILATIONS,
|
78
|
+
STATISTICS,
|
79
|
+
GLOBALS,
|
80
|
+
FOCUS
|
81
|
+
} WatchItem;
|
82
|
+
|
83
|
+
struct watchItemRecord
|
84
|
+
{
|
85
|
+
const char *name;
|
86
|
+
bool *flag;
|
87
|
+
int code,priority;
|
88
|
+
bool (*accessFunc)(Environment *,int,bool,struct expr *);
|
89
|
+
bool (*printFunc)(Environment *,const char *,int,struct expr *);
|
90
|
+
WatchItemRecord *next;
|
91
|
+
};
|
92
|
+
|
93
|
+
struct watchData
|
94
|
+
{
|
95
|
+
WatchItemRecord *ListOfWatchItems;
|
96
|
+
};
|
97
|
+
|
98
|
+
#define WatchData(theEnv) ((struct watchData *) GetEnvironmentData(theEnv,WATCH_DATA))
|
99
|
+
|
100
|
+
void Watch(Environment *,WatchItem);
|
101
|
+
void Unwatch(Environment *,WatchItem);
|
102
|
+
|
103
|
+
bool WatchString(Environment *,const char *);
|
104
|
+
bool UnwatchString(Environment *,const char *);
|
105
|
+
void InitializeWatchData(Environment *);
|
106
|
+
bool SetWatchItem(Environment *,const char *,bool,struct expr *);
|
107
|
+
int GetWatchItem(Environment *,const char *);
|
108
|
+
bool AddWatchItem(Environment *,const char *,int,bool *,int,
|
109
|
+
bool (*)(Environment *,int,bool,struct expr *),
|
110
|
+
bool (*)(Environment *,const char *,int,struct expr *));
|
111
|
+
const char *GetNthWatchName(Environment *,int);
|
112
|
+
int GetNthWatchValue(Environment *,int);
|
113
|
+
void WatchCommand(Environment *,UDFContext *,UDFValue *);
|
114
|
+
void UnwatchCommand(Environment *,UDFContext *,UDFValue *);
|
115
|
+
void ListWatchItemsCommand(Environment *,UDFContext *,UDFValue *);
|
116
|
+
void WatchFunctionDefinitions(Environment *);
|
117
|
+
void GetWatchItemCommand(Environment *,UDFContext *,UDFValue *);
|
118
|
+
bool GetWatchState(Environment *,WatchItem);
|
119
|
+
void SetWatchState(Environment *,WatchItem,bool);
|
120
|
+
|
121
|
+
#endif /* _H_watch */
|
122
|
+
|
123
|
+
|
124
|
+
|
data/lib/clipsruby.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "clipsruby/clipsruby"
|
metadata
ADDED
@@ -0,0 +1,388 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: clipsruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ryan Johnston
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Calling the CLIPS programming language from within Ruby
|
14
|
+
email: mrryanjohnston@gmail.com
|
15
|
+
executables: []
|
16
|
+
extensions:
|
17
|
+
- ext/clipsruby/extconf.rb
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ext/clipsruby/agenda.c
|
21
|
+
- ext/clipsruby/agenda.h
|
22
|
+
- ext/clipsruby/analysis.c
|
23
|
+
- ext/clipsruby/analysis.h
|
24
|
+
- ext/clipsruby/argacces.c
|
25
|
+
- ext/clipsruby/argacces.h
|
26
|
+
- ext/clipsruby/bload.c
|
27
|
+
- ext/clipsruby/bload.h
|
28
|
+
- ext/clipsruby/bmathfun.c
|
29
|
+
- ext/clipsruby/bmathfun.h
|
30
|
+
- ext/clipsruby/bsave.c
|
31
|
+
- ext/clipsruby/bsave.h
|
32
|
+
- ext/clipsruby/classcom.c
|
33
|
+
- ext/clipsruby/classcom.h
|
34
|
+
- ext/clipsruby/classexm.c
|
35
|
+
- ext/clipsruby/classexm.h
|
36
|
+
- ext/clipsruby/classfun.c
|
37
|
+
- ext/clipsruby/classfun.h
|
38
|
+
- ext/clipsruby/classinf.c
|
39
|
+
- ext/clipsruby/classinf.h
|
40
|
+
- ext/clipsruby/classini.c
|
41
|
+
- ext/clipsruby/classini.h
|
42
|
+
- ext/clipsruby/classpsr.c
|
43
|
+
- ext/clipsruby/classpsr.h
|
44
|
+
- ext/clipsruby/clips.h
|
45
|
+
- ext/clipsruby/clipsruby.c
|
46
|
+
- ext/clipsruby/clsltpsr.c
|
47
|
+
- ext/clipsruby/clsltpsr.h
|
48
|
+
- ext/clipsruby/commline.c
|
49
|
+
- ext/clipsruby/commline.h
|
50
|
+
- ext/clipsruby/conscomp.c
|
51
|
+
- ext/clipsruby/conscomp.h
|
52
|
+
- ext/clipsruby/constant.h
|
53
|
+
- ext/clipsruby/constrct.c
|
54
|
+
- ext/clipsruby/constrct.h
|
55
|
+
- ext/clipsruby/constrnt.c
|
56
|
+
- ext/clipsruby/constrnt.h
|
57
|
+
- ext/clipsruby/crstrtgy.c
|
58
|
+
- ext/clipsruby/crstrtgy.h
|
59
|
+
- ext/clipsruby/cstrcbin.c
|
60
|
+
- ext/clipsruby/cstrcbin.h
|
61
|
+
- ext/clipsruby/cstrccmp.h
|
62
|
+
- ext/clipsruby/cstrccom.c
|
63
|
+
- ext/clipsruby/cstrccom.h
|
64
|
+
- ext/clipsruby/cstrcpsr.c
|
65
|
+
- ext/clipsruby/cstrcpsr.h
|
66
|
+
- ext/clipsruby/cstrnbin.c
|
67
|
+
- ext/clipsruby/cstrnbin.h
|
68
|
+
- ext/clipsruby/cstrnchk.c
|
69
|
+
- ext/clipsruby/cstrnchk.h
|
70
|
+
- ext/clipsruby/cstrncmp.c
|
71
|
+
- ext/clipsruby/cstrncmp.h
|
72
|
+
- ext/clipsruby/cstrnops.c
|
73
|
+
- ext/clipsruby/cstrnops.h
|
74
|
+
- ext/clipsruby/cstrnpsr.c
|
75
|
+
- ext/clipsruby/cstrnpsr.h
|
76
|
+
- ext/clipsruby/cstrnutl.c
|
77
|
+
- ext/clipsruby/cstrnutl.h
|
78
|
+
- ext/clipsruby/default.c
|
79
|
+
- ext/clipsruby/default.h
|
80
|
+
- ext/clipsruby/defins.c
|
81
|
+
- ext/clipsruby/defins.h
|
82
|
+
- ext/clipsruby/developr.c
|
83
|
+
- ext/clipsruby/developr.h
|
84
|
+
- ext/clipsruby/dffctbin.c
|
85
|
+
- ext/clipsruby/dffctbin.h
|
86
|
+
- ext/clipsruby/dffctbsc.c
|
87
|
+
- ext/clipsruby/dffctbsc.h
|
88
|
+
- ext/clipsruby/dffctcmp.c
|
89
|
+
- ext/clipsruby/dffctcmp.h
|
90
|
+
- ext/clipsruby/dffctdef.c
|
91
|
+
- ext/clipsruby/dffctdef.h
|
92
|
+
- ext/clipsruby/dffctpsr.c
|
93
|
+
- ext/clipsruby/dffctpsr.h
|
94
|
+
- ext/clipsruby/dffnxbin.c
|
95
|
+
- ext/clipsruby/dffnxbin.h
|
96
|
+
- ext/clipsruby/dffnxcmp.c
|
97
|
+
- ext/clipsruby/dffnxcmp.h
|
98
|
+
- ext/clipsruby/dffnxexe.c
|
99
|
+
- ext/clipsruby/dffnxexe.h
|
100
|
+
- ext/clipsruby/dffnxfun.c
|
101
|
+
- ext/clipsruby/dffnxfun.h
|
102
|
+
- ext/clipsruby/dffnxpsr.c
|
103
|
+
- ext/clipsruby/dffnxpsr.h
|
104
|
+
- ext/clipsruby/dfinsbin.c
|
105
|
+
- ext/clipsruby/dfinsbin.h
|
106
|
+
- ext/clipsruby/dfinscmp.c
|
107
|
+
- ext/clipsruby/dfinscmp.h
|
108
|
+
- ext/clipsruby/drive.c
|
109
|
+
- ext/clipsruby/drive.h
|
110
|
+
- ext/clipsruby/emathfun.c
|
111
|
+
- ext/clipsruby/emathfun.h
|
112
|
+
- ext/clipsruby/engine.c
|
113
|
+
- ext/clipsruby/engine.h
|
114
|
+
- ext/clipsruby/entities.h
|
115
|
+
- ext/clipsruby/envrnbld.c
|
116
|
+
- ext/clipsruby/envrnbld.h
|
117
|
+
- ext/clipsruby/envrnmnt.c
|
118
|
+
- ext/clipsruby/envrnmnt.h
|
119
|
+
- ext/clipsruby/evaluatn.c
|
120
|
+
- ext/clipsruby/evaluatn.h
|
121
|
+
- ext/clipsruby/expressn.c
|
122
|
+
- ext/clipsruby/expressn.h
|
123
|
+
- ext/clipsruby/exprnbin.c
|
124
|
+
- ext/clipsruby/exprnbin.h
|
125
|
+
- ext/clipsruby/exprnops.c
|
126
|
+
- ext/clipsruby/exprnops.h
|
127
|
+
- ext/clipsruby/exprnpsr.c
|
128
|
+
- ext/clipsruby/exprnpsr.h
|
129
|
+
- ext/clipsruby/extconf.rb
|
130
|
+
- ext/clipsruby/extnfunc.c
|
131
|
+
- ext/clipsruby/extnfunc.h
|
132
|
+
- ext/clipsruby/factbin.c
|
133
|
+
- ext/clipsruby/factbin.h
|
134
|
+
- ext/clipsruby/factbld.c
|
135
|
+
- ext/clipsruby/factbld.h
|
136
|
+
- ext/clipsruby/factcmp.c
|
137
|
+
- ext/clipsruby/factcmp.h
|
138
|
+
- ext/clipsruby/factcom.c
|
139
|
+
- ext/clipsruby/factcom.h
|
140
|
+
- ext/clipsruby/factfile.c
|
141
|
+
- ext/clipsruby/factfile.h
|
142
|
+
- ext/clipsruby/factfun.c
|
143
|
+
- ext/clipsruby/factfun.h
|
144
|
+
- ext/clipsruby/factgen.c
|
145
|
+
- ext/clipsruby/factgen.h
|
146
|
+
- ext/clipsruby/facthsh.c
|
147
|
+
- ext/clipsruby/facthsh.h
|
148
|
+
- ext/clipsruby/factlhs.c
|
149
|
+
- ext/clipsruby/factlhs.h
|
150
|
+
- ext/clipsruby/factmch.c
|
151
|
+
- ext/clipsruby/factmch.h
|
152
|
+
- ext/clipsruby/factmngr.c
|
153
|
+
- ext/clipsruby/factmngr.h
|
154
|
+
- ext/clipsruby/factprt.c
|
155
|
+
- ext/clipsruby/factprt.h
|
156
|
+
- ext/clipsruby/factqpsr.c
|
157
|
+
- ext/clipsruby/factqpsr.h
|
158
|
+
- ext/clipsruby/factqury.c
|
159
|
+
- ext/clipsruby/factqury.h
|
160
|
+
- ext/clipsruby/factrete.c
|
161
|
+
- ext/clipsruby/factrete.h
|
162
|
+
- ext/clipsruby/factrhs.c
|
163
|
+
- ext/clipsruby/factrhs.h
|
164
|
+
- ext/clipsruby/filecom.c
|
165
|
+
- ext/clipsruby/filecom.h
|
166
|
+
- ext/clipsruby/filertr.c
|
167
|
+
- ext/clipsruby/filertr.h
|
168
|
+
- ext/clipsruby/fileutil.c
|
169
|
+
- ext/clipsruby/fileutil.h
|
170
|
+
- ext/clipsruby/generate.c
|
171
|
+
- ext/clipsruby/generate.h
|
172
|
+
- ext/clipsruby/genrcbin.c
|
173
|
+
- ext/clipsruby/genrcbin.h
|
174
|
+
- ext/clipsruby/genrccmp.c
|
175
|
+
- ext/clipsruby/genrccmp.h
|
176
|
+
- ext/clipsruby/genrccom.c
|
177
|
+
- ext/clipsruby/genrccom.h
|
178
|
+
- ext/clipsruby/genrcexe.c
|
179
|
+
- ext/clipsruby/genrcexe.h
|
180
|
+
- ext/clipsruby/genrcfun.c
|
181
|
+
- ext/clipsruby/genrcfun.h
|
182
|
+
- ext/clipsruby/genrcpsr.c
|
183
|
+
- ext/clipsruby/genrcpsr.h
|
184
|
+
- ext/clipsruby/globlbin.c
|
185
|
+
- ext/clipsruby/globlbin.h
|
186
|
+
- ext/clipsruby/globlbsc.c
|
187
|
+
- ext/clipsruby/globlbsc.h
|
188
|
+
- ext/clipsruby/globlcmp.c
|
189
|
+
- ext/clipsruby/globlcmp.h
|
190
|
+
- ext/clipsruby/globlcom.c
|
191
|
+
- ext/clipsruby/globlcom.h
|
192
|
+
- ext/clipsruby/globldef.c
|
193
|
+
- ext/clipsruby/globldef.h
|
194
|
+
- ext/clipsruby/globlpsr.c
|
195
|
+
- ext/clipsruby/globlpsr.h
|
196
|
+
- ext/clipsruby/immthpsr.c
|
197
|
+
- ext/clipsruby/immthpsr.h
|
198
|
+
- ext/clipsruby/incrrset.c
|
199
|
+
- ext/clipsruby/incrrset.h
|
200
|
+
- ext/clipsruby/inherpsr.c
|
201
|
+
- ext/clipsruby/inherpsr.h
|
202
|
+
- ext/clipsruby/inscom.c
|
203
|
+
- ext/clipsruby/inscom.h
|
204
|
+
- ext/clipsruby/insfile.c
|
205
|
+
- ext/clipsruby/insfile.h
|
206
|
+
- ext/clipsruby/insfun.c
|
207
|
+
- ext/clipsruby/insfun.h
|
208
|
+
- ext/clipsruby/insmngr.c
|
209
|
+
- ext/clipsruby/insmngr.h
|
210
|
+
- ext/clipsruby/insmoddp.c
|
211
|
+
- ext/clipsruby/insmoddp.h
|
212
|
+
- ext/clipsruby/insmult.c
|
213
|
+
- ext/clipsruby/insmult.h
|
214
|
+
- ext/clipsruby/inspsr.c
|
215
|
+
- ext/clipsruby/inspsr.h
|
216
|
+
- ext/clipsruby/insquery.c
|
217
|
+
- ext/clipsruby/insquery.h
|
218
|
+
- ext/clipsruby/insqypsr.c
|
219
|
+
- ext/clipsruby/insqypsr.h
|
220
|
+
- ext/clipsruby/iofun.c
|
221
|
+
- ext/clipsruby/iofun.h
|
222
|
+
- ext/clipsruby/lgcldpnd.c
|
223
|
+
- ext/clipsruby/lgcldpnd.h
|
224
|
+
- ext/clipsruby/main.c
|
225
|
+
- ext/clipsruby/match.h
|
226
|
+
- ext/clipsruby/memalloc.c
|
227
|
+
- ext/clipsruby/memalloc.h
|
228
|
+
- ext/clipsruby/miscfun.c
|
229
|
+
- ext/clipsruby/miscfun.h
|
230
|
+
- ext/clipsruby/modulbin.c
|
231
|
+
- ext/clipsruby/modulbin.h
|
232
|
+
- ext/clipsruby/modulbsc.c
|
233
|
+
- ext/clipsruby/modulbsc.h
|
234
|
+
- ext/clipsruby/modulcmp.c
|
235
|
+
- ext/clipsruby/modulcmp.h
|
236
|
+
- ext/clipsruby/moduldef.c
|
237
|
+
- ext/clipsruby/moduldef.h
|
238
|
+
- ext/clipsruby/modulpsr.c
|
239
|
+
- ext/clipsruby/modulpsr.h
|
240
|
+
- ext/clipsruby/modulutl.c
|
241
|
+
- ext/clipsruby/modulutl.h
|
242
|
+
- ext/clipsruby/msgcom.c
|
243
|
+
- ext/clipsruby/msgcom.h
|
244
|
+
- ext/clipsruby/msgfun.c
|
245
|
+
- ext/clipsruby/msgfun.h
|
246
|
+
- ext/clipsruby/msgpass.c
|
247
|
+
- ext/clipsruby/msgpass.h
|
248
|
+
- ext/clipsruby/msgpsr.c
|
249
|
+
- ext/clipsruby/msgpsr.h
|
250
|
+
- ext/clipsruby/multifld.c
|
251
|
+
- ext/clipsruby/multifld.h
|
252
|
+
- ext/clipsruby/multifun.c
|
253
|
+
- ext/clipsruby/multifun.h
|
254
|
+
- ext/clipsruby/network.h
|
255
|
+
- ext/clipsruby/objbin.c
|
256
|
+
- ext/clipsruby/objbin.h
|
257
|
+
- ext/clipsruby/objcmp.c
|
258
|
+
- ext/clipsruby/objcmp.h
|
259
|
+
- ext/clipsruby/object.h
|
260
|
+
- ext/clipsruby/objrtbin.c
|
261
|
+
- ext/clipsruby/objrtbin.h
|
262
|
+
- ext/clipsruby/objrtbld.c
|
263
|
+
- ext/clipsruby/objrtbld.h
|
264
|
+
- ext/clipsruby/objrtcmp.c
|
265
|
+
- ext/clipsruby/objrtcmp.h
|
266
|
+
- ext/clipsruby/objrtfnx.c
|
267
|
+
- ext/clipsruby/objrtfnx.h
|
268
|
+
- ext/clipsruby/objrtgen.c
|
269
|
+
- ext/clipsruby/objrtgen.h
|
270
|
+
- ext/clipsruby/objrtmch.c
|
271
|
+
- ext/clipsruby/objrtmch.h
|
272
|
+
- ext/clipsruby/parsefun.c
|
273
|
+
- ext/clipsruby/parsefun.h
|
274
|
+
- ext/clipsruby/pattern.c
|
275
|
+
- ext/clipsruby/pattern.h
|
276
|
+
- ext/clipsruby/pprint.c
|
277
|
+
- ext/clipsruby/pprint.h
|
278
|
+
- ext/clipsruby/prccode.c
|
279
|
+
- ext/clipsruby/prccode.h
|
280
|
+
- ext/clipsruby/prcdrfun.c
|
281
|
+
- ext/clipsruby/prcdrfun.h
|
282
|
+
- ext/clipsruby/prcdrpsr.c
|
283
|
+
- ext/clipsruby/prcdrpsr.h
|
284
|
+
- ext/clipsruby/prdctfun.c
|
285
|
+
- ext/clipsruby/prdctfun.h
|
286
|
+
- ext/clipsruby/prntutil.c
|
287
|
+
- ext/clipsruby/prntutil.h
|
288
|
+
- ext/clipsruby/proflfun.c
|
289
|
+
- ext/clipsruby/proflfun.h
|
290
|
+
- ext/clipsruby/reorder.c
|
291
|
+
- ext/clipsruby/reorder.h
|
292
|
+
- ext/clipsruby/reteutil.c
|
293
|
+
- ext/clipsruby/reteutil.h
|
294
|
+
- ext/clipsruby/retract.c
|
295
|
+
- ext/clipsruby/retract.h
|
296
|
+
- ext/clipsruby/router.c
|
297
|
+
- ext/clipsruby/router.h
|
298
|
+
- ext/clipsruby/rulebin.c
|
299
|
+
- ext/clipsruby/rulebin.h
|
300
|
+
- ext/clipsruby/rulebld.c
|
301
|
+
- ext/clipsruby/rulebld.h
|
302
|
+
- ext/clipsruby/rulebsc.c
|
303
|
+
- ext/clipsruby/rulebsc.h
|
304
|
+
- ext/clipsruby/rulecmp.c
|
305
|
+
- ext/clipsruby/rulecmp.h
|
306
|
+
- ext/clipsruby/rulecom.c
|
307
|
+
- ext/clipsruby/rulecom.h
|
308
|
+
- ext/clipsruby/rulecstr.c
|
309
|
+
- ext/clipsruby/rulecstr.h
|
310
|
+
- ext/clipsruby/ruledef.c
|
311
|
+
- ext/clipsruby/ruledef.h
|
312
|
+
- ext/clipsruby/ruledlt.c
|
313
|
+
- ext/clipsruby/ruledlt.h
|
314
|
+
- ext/clipsruby/rulelhs.c
|
315
|
+
- ext/clipsruby/rulelhs.h
|
316
|
+
- ext/clipsruby/rulepsr.c
|
317
|
+
- ext/clipsruby/rulepsr.h
|
318
|
+
- ext/clipsruby/scanner.c
|
319
|
+
- ext/clipsruby/scanner.h
|
320
|
+
- ext/clipsruby/setup.h
|
321
|
+
- ext/clipsruby/sortfun.c
|
322
|
+
- ext/clipsruby/sortfun.h
|
323
|
+
- ext/clipsruby/strngfun.c
|
324
|
+
- ext/clipsruby/strngfun.h
|
325
|
+
- ext/clipsruby/strngrtr.c
|
326
|
+
- ext/clipsruby/strngrtr.h
|
327
|
+
- ext/clipsruby/symblbin.c
|
328
|
+
- ext/clipsruby/symblbin.h
|
329
|
+
- ext/clipsruby/symblcmp.c
|
330
|
+
- ext/clipsruby/symblcmp.h
|
331
|
+
- ext/clipsruby/symbol.c
|
332
|
+
- ext/clipsruby/symbol.h
|
333
|
+
- ext/clipsruby/sysdep.c
|
334
|
+
- ext/clipsruby/sysdep.h
|
335
|
+
- ext/clipsruby/textpro.c
|
336
|
+
- ext/clipsruby/textpro.h
|
337
|
+
- ext/clipsruby/tmpltbin.c
|
338
|
+
- ext/clipsruby/tmpltbin.h
|
339
|
+
- ext/clipsruby/tmpltbsc.c
|
340
|
+
- ext/clipsruby/tmpltbsc.h
|
341
|
+
- ext/clipsruby/tmpltcmp.c
|
342
|
+
- ext/clipsruby/tmpltcmp.h
|
343
|
+
- ext/clipsruby/tmpltdef.c
|
344
|
+
- ext/clipsruby/tmpltdef.h
|
345
|
+
- ext/clipsruby/tmpltfun.c
|
346
|
+
- ext/clipsruby/tmpltfun.h
|
347
|
+
- ext/clipsruby/tmpltlhs.c
|
348
|
+
- ext/clipsruby/tmpltlhs.h
|
349
|
+
- ext/clipsruby/tmpltpsr.c
|
350
|
+
- ext/clipsruby/tmpltpsr.h
|
351
|
+
- ext/clipsruby/tmpltrhs.c
|
352
|
+
- ext/clipsruby/tmpltrhs.h
|
353
|
+
- ext/clipsruby/tmpltutl.c
|
354
|
+
- ext/clipsruby/tmpltutl.h
|
355
|
+
- ext/clipsruby/userdata.c
|
356
|
+
- ext/clipsruby/userdata.h
|
357
|
+
- ext/clipsruby/userfunctions.c
|
358
|
+
- ext/clipsruby/usrsetup.h
|
359
|
+
- ext/clipsruby/utility.c
|
360
|
+
- ext/clipsruby/utility.h
|
361
|
+
- ext/clipsruby/watch.c
|
362
|
+
- ext/clipsruby/watch.h
|
363
|
+
- lib/clipsruby.rb
|
364
|
+
homepage: https://rubygems.org/gems/clipsruby
|
365
|
+
licenses:
|
366
|
+
- MIT
|
367
|
+
metadata: {}
|
368
|
+
post_install_message:
|
369
|
+
rdoc_options: []
|
370
|
+
require_paths:
|
371
|
+
- lib
|
372
|
+
- lib/clipsruby
|
373
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
374
|
+
requirements:
|
375
|
+
- - ">="
|
376
|
+
- !ruby/object:Gem::Version
|
377
|
+
version: '0'
|
378
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
379
|
+
requirements:
|
380
|
+
- - ">="
|
381
|
+
- !ruby/object:Gem::Version
|
382
|
+
version: '0'
|
383
|
+
requirements: []
|
384
|
+
rubygems_version: 3.5.11
|
385
|
+
signing_key:
|
386
|
+
specification_version: 4
|
387
|
+
summary: Calling CLIPS from within Ruby
|
388
|
+
test_files: []
|