We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3451e8d commit 7d65328Copy full SHA for 7d65328
1 file changed
logic.py
@@ -91,7 +91,7 @@ def tell(self, sentence):
91
self.clauses.extend(conjuncts(to_cnf(sentence)))
92
93
def ask_generator(self, query):
94
- "Return the empty substitution {} if KB entails query; else return None."
+ "Yield the empty substitution {} if KB entails query; else no results."
95
if tt_entails(Expr('&', *self.clauses), query):
96
yield {}
97
0 commit comments