Skip to content

Commit 62d616f

Browse files
committed
Add TT-ENTAILS algorithm with examples and references
1 parent 518f003 commit 62d616f

2 files changed

Lines changed: 2 additions & 53 deletions

File tree

machine_learning/TT_Entails.py

Lines changed: 0 additions & 52 deletions
This file was deleted.

machine_learning/ttentails.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
TT-ENTAILS Algorithm (Propositional Logic)
3-
Reference: Russell & Norvig, Artificial Intelligence: A Modern Approach
3+
Reference: [Russell & Norvig, Artificial Intelligence: A Modern Approach, Ch. 7](https://aima.cs.berkeley.edu/)
4+
Wikipedia: [Entailment](https://en.wikipedia.org/wiki/Entailment)
45
56
This algorithm checks if a knowledge base (KB) entails a query sentence (α)
67
using truth tables. Returns True if KB entails α, False otherwise.

0 commit comments

Comments
 (0)