From 9c0a92b5840ff089fe36d3000674cb1350249055 Mon Sep 17 00:00:00 2001 From: Mike Archbold Date: Mon, 19 Aug 2024 16:52:42 -0700 Subject: [PATCH] add xor processing --- src/canary/metta_ontology.pfc.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/canary/metta_ontology.pfc.pl b/src/canary/metta_ontology.pfc.pl index a57d0e8f737..a3a66927119 100755 --- a/src/canary/metta_ontology.pfc.pl +++ b/src/canary/metta_ontology.pfc.pl @@ -421,7 +421,7 @@ properties('&corelib','\\=', [logic, qhelp("Inequality test."), inequality]). properties('&corelib','==', [logic, qhelp("Equality test."), equality_test]). properties('&corelib','or', [logic, qhelp("Logical OR."), logical_or]). -properties('&corelib','xor', [logic, qhelp("Logical XOR."), logical_or]) +properties('&corelib','xor', [logic, qhelp("Logical XOR."), logical_xor]) properties('&corelib','and', [logic, qhelp("Logical AND."), logical_and]). properties('&corelib','not', [logic, qhelp("Logical NOT."), logical_not]). properties('&corelib','quote', [evaluation_control, qhelp("Prevents evaluation, treating input as literal.")]).