Skip to content

Commit

Permalink
add some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
apease committed Jul 5, 2024
1 parent 5f05831 commit a6b6362
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions tests/TPTP/TQM4.tff
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,16 @@ tff(instance_tp,type,(instance : ($i * $i) > $o)).
tff(earth_tp,type,(earth : $i)).
tff(flat_tp,type,(flat : $i)).
tff(bill_tp,type,(bill : $i)).
tff(mary_tp,type,(mary : $i)).

tff(believes_tp,type,(believes : m)).
tff(knows_tp,type,(knows : m)).

% modality, agent, consequent world, antecedent world
tff(accreln_tp,type,(accreln : (m * $i * w * w) > $o)).
% modality, agent, antecedent world, consequent world
tff(accreln_tp,type,(accreln2 : (m * $i * w * w) > $o)).

% modality, agent, patient, antecedent world, consequent world
tff(accreln2_tp,type,(accreln2 : (m * $i * $i * w * w) > $o)).

tff(axiom_t_believes,axiom,(! [X:$i] : (! [W:w] : (accreln(believes,X,W,W))))).
tff(axiom_t_knows,axiom,(! [X:$i] : (! [W:w] : (accreln(knows,X,W,W))))).
Expand All @@ -35,6 +39,9 @@ tff(axiom_t_knows,axiom,(! [X:$i] : (! [W:w] : (accreln(knows,X,W,W))))).
% Bill
% Mary)

tff(kb1,axiom,
(![W:w, W2:w] :
(accreln2(confersObligation,bill,mary,W,W2) =>
%(likes Bill Mary)

%(=>
Expand Down

0 comments on commit a6b6362

Please sign in to comment.