Skip to content

Commit

Permalink
Update: Memory.java, TemporalRules.java: use OUT instead of Derived f…
Browse files Browse the repository at this point in the history
…or printing derivations
  • Loading branch information
patham9 committed Oct 10, 2021
1 parent 6903395 commit d0feb89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nars_core_java/nars/inference/TemporalRules.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public static Task temporalInduction(Sentence s1, Sentence s2, Task currentTask,

if(newTask != null){
//memory.generalInfoReport("New Implication: " + newTask.getName());
System.out.println("Derived: " + newTask.toString());
System.out.println(" OUT: " + newTask.toString());
memory.immediateProcess(newTask);
}

Expand Down
2 changes: 1 addition & 1 deletion nars_core_java/nars/storage/Memory.java
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public void activatedTask(BudgetValue budget, Sentence sentence, Sentence candid
public void derivedTask(Task task) {

if (task.getBudget().aboveThreshold()) {
recorder.append("!!! Derived: " + task + "\n");
recorder.append(" OUT: " + task + "\n");
float budget = task.getBudget().totalBudget();
float minSilent = reasoner.getSilenceValue().get() / 100.0f;

Expand Down

0 comments on commit d0feb89

Please sign in to comment.