Skip to content

Commit

Permalink
Finetune vars for tourney 6
Browse files Browse the repository at this point in the history
  • Loading branch information
BenPapple committed Sep 6, 2022
1 parent bf9d6de commit c77d153
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion goaldiggersrc/goaldiggerInit.mod2g
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module goaldiggerInit {
% set step after which ACO exploring turns off
if true then insert(limitACOSteps(100)).
% limits the tasks by remaining steps (Task1Limit,Task2Limit,Task3Limit,Task4Limit)
if true then insert(limitStepsTask(20, 60, 85, 95)).
if true then insert(limitStepsTask(20, 85, 85, 95)).

% machine learning
if true then insert(qtable(33,34,33,30,70,100)).
Expand Down
2 changes: 1 addition & 1 deletion goaldiggersrc/taskhandling/manageCustomQtable.mod2g
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module manageCustomQtable {
% calculate Q for failed 90 point tasks
forall (_).sent(failed90pointtask(_, _)) do {
if bel(qtable(V1,V2,V3,V4,V5,V6)),
bel(Q2 is V1 + 10, Q3 is V2 - 5, Q4 is V3 - 5)
bel(Q2 is V1 + 20, Q3 is V2 - 10, Q4 is V3 - 10)
then delete(qtable(V1,V2,V3,V4,V5,V6)) +
insert(qtable(Q2,Q3,Q4,V4,V5,V6)).
}
Expand Down

0 comments on commit c77d153

Please sign in to comment.