Skip to content

Commit

Permalink
Revert changes in Tools.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrock4t committed Nov 20, 2023
1 parent 13506bd commit cb782e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pynars/NAL/Functions/Tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ def project_truth(premise1: Union[Judgement, Goal, Question, Quest], premise2: U
if not premise2.is_eternal:
if not premise1.is_eternal:
t_target = premise1.stamp.t_occurrence
truth = project(truth, Global.time, t_target)
t_source = premise2.stamp.t_occurrence
truth = project(truth, t_source, Global.time, t_target)
truth = eternalize(truth)
return truth

Expand Down

0 comments on commit cb782e5

Please sign in to comment.