Skip to content

Commit

Permalink
Update InputBufferMC.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrock4t committed Mar 5, 2024
1 parent 77513fb commit aba1bad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pynars/NARS/DataStructures/MC/InputBufferMC.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,9 @@ def prediction_generation(self):
for i in range(self.present):
if self.slots[i].candidate:
# e.g., (E, +1) as the subject
subject = Compound.SequentialEvents(scopula = Copula.PredictiveImplication # =/>
term = Statement(subject, copula, predicate)elf.slots[i].candidate.term, Interval(abs(self.present - i)))

subject = Compound.SequentialEvents(self.slots[i].candidate.term, Interval(abs(self.present - i)))
copula = Copula.PredictiveImplication # =/>
term = Statement(subject, copula, predicate)
# truth, using truth-induction function (TODO, may subject to change)
truth = Truth_induction(self.slots[i].candidate.truth,
self.slots[self.present].candidate.truth)
Expand Down

0 comments on commit aba1bad

Please sign in to comment.