ripple-down-rules 0.6.1__py3-none-any.whl → 0.6.6__py3-none-any.whl
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.
- ripple_down_rules/__init__.py +21 -1
- ripple_down_rules/datastructures/callable_expression.py +24 -7
- ripple_down_rules/datastructures/case.py +12 -11
- ripple_down_rules/datastructures/dataclasses.py +135 -14
- ripple_down_rules/datastructures/enums.py +29 -86
- ripple_down_rules/datastructures/field_info.py +177 -0
- ripple_down_rules/datastructures/tracked_object.py +208 -0
- ripple_down_rules/experts.py +141 -50
- ripple_down_rules/failures.py +4 -0
- ripple_down_rules/helpers.py +75 -8
- ripple_down_rules/predicates.py +97 -0
- ripple_down_rules/rdr.py +712 -96
- ripple_down_rules/rdr_decorators.py +164 -112
- ripple_down_rules/rules.py +351 -114
- ripple_down_rules/user_interface/gui.py +66 -41
- ripple_down_rules/user_interface/ipython_custom_shell.py +46 -9
- ripple_down_rules/user_interface/prompt.py +80 -60
- ripple_down_rules/user_interface/template_file_creator.py +13 -8
- ripple_down_rules/utils.py +537 -53
- {ripple_down_rules-0.6.1.dist-info → ripple_down_rules-0.6.6.dist-info}/METADATA +4 -1
- ripple_down_rules-0.6.6.dist-info/RECORD +28 -0
- ripple_down_rules-0.6.1.dist-info/RECORD +0 -24
- {ripple_down_rules-0.6.1.dist-info → ripple_down_rules-0.6.6.dist-info}/WHEEL +0 -0
- {ripple_down_rules-0.6.1.dist-info → ripple_down_rules-0.6.6.dist-info}/licenses/LICENSE +0 -0
- {ripple_down_rules-0.6.1.dist-info → ripple_down_rules-0.6.6.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ripple_down_rules
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.6
|
4
4
|
Summary: Implements the various versions of Ripple Down Rules (RDR) for knowledge representation and reasoning.
|
5
5
|
Author-email: Abdelrhman Bassiouny <abassiou@uni-bremen.de>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -677,6 +677,7 @@ License: GNU GENERAL PUBLIC LICENSE
|
|
677
677
|
the library. If this is what you want to do, use the GNU Lesser General
|
678
678
|
Public License instead of this License. But first, please read
|
679
679
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
680
|
+
Project-URL: Homepage, https://github.com/AbdelrhmanBassiouny/ripple_down_rules
|
680
681
|
Keywords: robotics,knowledge,reasoning,representation
|
681
682
|
Classifier: Programming Language :: Python :: 3
|
682
683
|
Description-Content-Type: text/markdown
|
@@ -695,6 +696,8 @@ Requires-Dist: sqlalchemy
|
|
695
696
|
Requires-Dist: pandas
|
696
697
|
Requires-Dist: pyparsing>=3.2.3
|
697
698
|
Requires-Dist: omegaconf
|
699
|
+
Requires-Dist: rustworkx
|
700
|
+
Requires-Dist: pydot
|
698
701
|
Provides-Extra: viz
|
699
702
|
Requires-Dist: networkx>=3.1; extra == "viz"
|
700
703
|
Requires-Dist: matplotlib>=3.7.5; extra == "viz"
|
@@ -0,0 +1,28 @@
|
|
1
|
+
ripple_down_rules/__init__.py,sha256=YcjLS_Sel5W2kNF0_gUKyNWNWqP34ElfHk5Hzzd_x_E,584
|
2
|
+
ripple_down_rules/experts.py,sha256=KXwWCmDrCffu9HW3yNewqWc1e5rnPI5Rnc981w_5M7U,17896
|
3
|
+
ripple_down_rules/failures.py,sha256=ZPypPwKjyVcJkY9YG6p538ld8ZzpdW6CrC1RmJi44Ek,42
|
4
|
+
ripple_down_rules/helpers.py,sha256=ZnmhVJs5MBopRp3-lj-Pqgd0j6EOJW1fiQe60Rnp2nE,7360
|
5
|
+
ripple_down_rules/predicates.py,sha256=18_lir_rDtXrtLcwfd1t8x2iq8JMMmXshPQ5RW1p5Es,3211
|
6
|
+
ripple_down_rules/rdr.py,sha256=lI2bdMPN0Oda8Z4kG0Yc7d8Jhci9BIaNhbHJ-Uv1JUU,84547
|
7
|
+
ripple_down_rules/rdr_decorators.py,sha256=rlUQcukp3HIl58p9BqH9Q8SK2MtQUOK8IBE1Wlp1d4w,12468
|
8
|
+
ripple_down_rules/rules.py,sha256=1gPg4Qrp1r3JAey1woHPH57ONHyZcsLq4foR5pafVTA,30735
|
9
|
+
ripple_down_rules/start-code-server.sh,sha256=otClk7VmDgBOX2TS_cjws6K0UwvgAUJhoA0ugkPCLqQ,949
|
10
|
+
ripple_down_rules/utils.py,sha256=MFb4pKFq0fOhbTIAR5I6r39djU0YS1Yq-Km9k9OnuFM,81748
|
11
|
+
ripple_down_rules/datastructures/__init__.py,sha256=V2aNgf5C96Y5-IGghra3n9uiefpoIm_QdT7cc_C8cxQ,111
|
12
|
+
ripple_down_rules/datastructures/callable_expression.py,sha256=Eq8_9wlFIZex3Y3htwg-AKu-B7053f0Qk6dvMo1Nlts,13815
|
13
|
+
ripple_down_rules/datastructures/case.py,sha256=dfLnrjsHIVF2bgbz-4ID7OdQvw68V71btCeTK372P-g,15667
|
14
|
+
ripple_down_rules/datastructures/dataclasses.py,sha256=puZjT-B6DDO8PU_uk05exYvXYKk9ltwoiXuO9yqWaC4,15045
|
15
|
+
ripple_down_rules/datastructures/enums.py,sha256=oiI8uPPmiAdJwvJkoAsOkxH7hyGwqt6x_K4fsFd8kDM,4445
|
16
|
+
ripple_down_rules/datastructures/field_info.py,sha256=7vxrLGbP9XIjKr5QKdQhpIE36t0vRQZkZqX-A0M68UE,5397
|
17
|
+
ripple_down_rules/datastructures/tracked_object.py,sha256=mWJ4kuhUfd5gbG3DFL1zBUHjKT0zo8ocGssxy4PgnGw,8345
|
18
|
+
ripple_down_rules/user_interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
+
ripple_down_rules/user_interface/gui.py,sha256=K6cvA9TOXIDpk0quGCamrWqDRlvz0QruDaTj4Y4PWWI,28544
|
20
|
+
ripple_down_rules/user_interface/ipython_custom_shell.py,sha256=b4HkbClZIxRMH_YKOYBqDqt2z2LzKEOxvcroSa34AIg,7976
|
21
|
+
ripple_down_rules/user_interface/object_diagram.py,sha256=FEa2HaYR9QmTE6NsOwBvZ0jqmu3DKyg6mig2VE5ZP4Y,4956
|
22
|
+
ripple_down_rules/user_interface/prompt.py,sha256=ZjuOkncQd1ape79bygjsVk-zixnT1vBxwK2kK8LtE2Q,10439
|
23
|
+
ripple_down_rules/user_interface/template_file_creator.py,sha256=HeqI37zfgimivDLnsVsnvKu5utj8Zoq0Ou7G4fbciK0,13783
|
24
|
+
ripple_down_rules-0.6.6.dist-info/licenses/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
25
|
+
ripple_down_rules-0.6.6.dist-info/METADATA,sha256=sDSRaPbEefNRHBRS5bqzvBZyYX-J4A7veGapWNqfF6c,48339
|
26
|
+
ripple_down_rules-0.6.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
27
|
+
ripple_down_rules-0.6.6.dist-info/top_level.txt,sha256=VeoLhEhyK46M1OHwoPbCQLI1EifLjChqGzhQ6WEUqeM,18
|
28
|
+
ripple_down_rules-0.6.6.dist-info/RECORD,,
|
@@ -1,24 +0,0 @@
|
|
1
|
-
ripple_down_rules/__init__.py,sha256=B8pB51s_DLQLsz-ddWBpBxmHt45Fr_FCoKmP-nvXKJ4,99
|
2
|
-
ripple_down_rules/experts.py,sha256=4-dMIVeMzFXCLYl_XBG_P7_Xs4sZih9-vZxCIPri6dA,12958
|
3
|
-
ripple_down_rules/helpers.py,sha256=OVjQm57hm4yUkGrmQB0w3GmuILdYP9yCiJ4QrwfZPeo,4596
|
4
|
-
ripple_down_rules/rdr.py,sha256=G0UWETaXddDOaNWTqfxPWkCSDiWkMEU_aBUWcsnJUN0,56147
|
5
|
-
ripple_down_rules/rdr_decorators.py,sha256=0GpWuAOPLYc8WFc5SN8PgHRLNgcHw8dNMmeIbaB8Los,10085
|
6
|
-
ripple_down_rules/rules.py,sha256=Dk4yGCy5oV10mOv5rRLcmtIu9J60WBPol9b7ELFn6fY,21522
|
7
|
-
ripple_down_rules/start-code-server.sh,sha256=otClk7VmDgBOX2TS_cjws6K0UwvgAUJhoA0ugkPCLqQ,949
|
8
|
-
ripple_down_rules/utils.py,sha256=vFoz5HcRgkf7_s-zdWSg54xI9PCMcdDzcdFGdas7KBA,62350
|
9
|
-
ripple_down_rules/datastructures/__init__.py,sha256=V2aNgf5C96Y5-IGghra3n9uiefpoIm_QdT7cc_C8cxQ,111
|
10
|
-
ripple_down_rules/datastructures/callable_expression.py,sha256=YHlEYc9Ye_4gYAqqj_TyCB363WpZ8lXH2LLRl1CCGe8,12934
|
11
|
-
ripple_down_rules/datastructures/case.py,sha256=PJ7_-AdxYic6BO5z816piFODj6nU5J6Jt1YzTFH-dds,15510
|
12
|
-
ripple_down_rules/datastructures/dataclasses.py,sha256=D-nrVEW_27njmDGkyiHRnq5lmqEdO8RHKnLb1mdnwrA,11054
|
13
|
-
ripple_down_rules/datastructures/enums.py,sha256=ce7tqS0otfSTNAOwsnXlhsvIn4iW_Y_N3TNebF3YoZs,5700
|
14
|
-
ripple_down_rules/user_interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
|
-
ripple_down_rules/user_interface/gui.py,sha256=_lgZAUXxxaBUFQJAHjA5TBPp6XEvJ62t-kSN8sPsocE,27379
|
16
|
-
ripple_down_rules/user_interface/ipython_custom_shell.py,sha256=yp-F8YRWGhj1PLB33HE6vJkdYWFN5Zn2244S2DUWRTM,6576
|
17
|
-
ripple_down_rules/user_interface/object_diagram.py,sha256=FEa2HaYR9QmTE6NsOwBvZ0jqmu3DKyg6mig2VE5ZP4Y,4956
|
18
|
-
ripple_down_rules/user_interface/prompt.py,sha256=JceEUGYsd0lIvd-v2y3D3swoo96_C0lxfp3CxM7Vfts,8900
|
19
|
-
ripple_down_rules/user_interface/template_file_creator.py,sha256=kwBbFLyN6Yx2NTIHPSwOoytWgbJDYhgrUOVFw_jkDQ4,13522
|
20
|
-
ripple_down_rules-0.6.1.dist-info/licenses/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
21
|
-
ripple_down_rules-0.6.1.dist-info/METADATA,sha256=ykWY4i5avTIJHNvn3E8_8E398isJFxzzACRL-x_G5Fs,48213
|
22
|
-
ripple_down_rules-0.6.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
23
|
-
ripple_down_rules-0.6.1.dist-info/top_level.txt,sha256=VeoLhEhyK46M1OHwoPbCQLI1EifLjChqGzhQ6WEUqeM,18
|
24
|
-
ripple_down_rules-0.6.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|