├── BW-Hierarchical-LA ├── BW-Hierarchical-LA.soar ├── BW-Hierarchical-LA.vsa └── BW-Hierarchical-LA │ ├── BW-Hierarchical-LA.dm │ ├── BW-Hierarchical-LA_source.soar │ ├── Impasse__Operator_Tie.soar │ ├── Impasse__Operator_Tie │ ├── Impasse__Operator_Tie_source.soar │ ├── elaborations.soar │ ├── evaluate-operator.soar │ └── evaluate-operator │ │ ├── Impasse__State_No-Change.soar │ │ ├── Impasse__State_No-Change │ │ ├── Impasse__State_No-Change.soar │ │ ├── Impasse__State_No-Change │ │ │ ├── Impasse__State_No-Change_source.soar │ │ │ └── elaborations.soar │ │ ├── Impasse__State_No-Change_source.soar │ │ └── elaborations.soar │ │ ├── elaborations.soar │ │ ├── evaluate-operator_source.soar │ │ ├── evaluation.soar │ │ ├── pick-up.soar │ │ └── put-down.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── blocks-world-hierachical-lookahead.dm │ ├── blocks-world-hierachical-lookahead_source.soar │ ├── comment.dm │ ├── elaborations │ ├── clear.soar │ ├── detect-success.soar │ ├── elaborations_source.soar │ ├── in-place.soar │ ├── monitor.soar │ ├── moveable.soar │ ├── problem-space.soar │ └── selection.soar │ ├── external-operator-implementations.soar │ ├── initialize-blocks-world.soar │ ├── move-block.soar │ └── move-block │ ├── elaborations.soar │ ├── move-block_source.soar │ ├── pick-up.soar │ ├── pick-up │ ├── close-gripper.soar │ ├── elaborations.soar │ ├── move-gripper-above.soar │ ├── move-gripper-down.soar │ ├── move-gripper-up.soar │ ├── open-gripper.soar │ └── pick-up_source.soar │ └── put-down.soar ├── BW-Hierarchical ├── BW-Hierarchical.soar ├── BW-Hierarchical.vsa └── BW-Hierarchical │ ├── BW-Hierarchical.dm │ ├── BW-Hierarchical_source.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── block-world-HRL.pptx │ ├── blocks-world-hierarchical.dm │ ├── blocks-world-hierarchical_source.soar │ ├── comment.dm │ ├── elaborations │ ├── clear.soar │ ├── detect-success.soar │ ├── elaborations_source.soar │ ├── in-place.soar │ ├── monitor.soar │ └── moveable.soar │ ├── external-operator-implementations.soar │ ├── initialize-blocks-world.soar │ ├── move-block.soar │ ├── move-block │ ├── elaborations.soar │ ├── move-block_source.soar │ ├── pick-up.soar │ ├── pick-up │ │ ├── close-gripper.soar │ │ ├── elaborations.soar │ │ ├── move-gripper-above.soar │ │ ├── move-gripper-down.soar │ │ ├── move-gripper-up.soar │ │ ├── open-gripper.soar │ │ └── pick-up_source.soar │ └── put-down.soar │ └── search-control.soar ├── BW-LA-state-eval ├── BW-LA-state-eval.soar ├── BW-LA-state-eval.vsa └── BW-LA-state-eval │ ├── BW-LA-state-eval.dm │ ├── BW-LA-state-eval_source.soar │ ├── Impasse__Operator_Tie.soar │ ├── Impasse__Operator_Tie │ ├── Impasse__Operator_Tie_source.soar │ ├── evaluate-operator.soar │ └── evaluate-operator │ │ ├── elaborations.soar │ │ ├── evaluate-operator_source.soar │ │ └── evaluate-state.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── blocks-world-lookahead-numeric-evaluation.dm │ ├── blocks-world-lookahead-numeric-evaluation_source.soar │ ├── blocks-world-lookahead-state-evaluation.dm │ ├── blocks-world-lookahead-state-evaluation_source.soar │ ├── blocks-world-lookahead.dm │ ├── blocks-world-lookahead_source.soar │ ├── comment.dm │ ├── elaborations │ ├── clear.soar │ ├── elaborations_source.soar │ ├── in-place.soar │ ├── monitor.soar │ ├── moveable.soar │ ├── problem-space.soar │ └── reward.soar │ ├── initialize-blocks-world.soar │ └── move-block.soar ├── BW-LA ├── BW-LA.soar ├── BW-LA.vsa └── BW-LA │ ├── BW-LA.dm │ ├── BW-LA_source.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── blocks-world-lookahead.dm │ ├── blocks-world-lookahead_source.soar │ ├── comment.dm │ ├── elaborations │ ├── clear.soar │ ├── detect-success.soar │ ├── elaborations_source.soar │ ├── in-place.soar │ ├── monitor.soar │ ├── moveable.soar │ ├── problem-space.soar │ └── selection-failure.soar │ ├── initialize-blocks-world.soar │ ├── move-block.soar │ └── search-control.soar ├── BW-Op-Subgoal-RL ├── BW-Op-Subgoal-RL.soar ├── BW-Op-Subgoal-RL.vsa └── BW-Op-Subgoal-RL │ ├── BW-Op-Subgoal-RL.dm │ ├── BW-Op-Subgoal-RL_source.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── blocks-world-operator-subgoaling-RL.dm │ ├── blocks-world-operator-subgoaling-RL_source.soar │ ├── comment.dm │ ├── elaborations │ ├── RL-selection-knowledge.soar │ ├── clear.soar │ ├── detect-success.soar │ ├── elaborations_source.soar │ ├── in-place.soar │ ├── monitor.soar │ └── reward.soar │ ├── initialize-blocks-world.soar │ ├── move-block.soar │ └── move-block │ ├── RL-selection-knowledge.soar │ ├── elaborations.soar │ ├── move-block.soar │ ├── move-block_source.soar │ └── reward.soar ├── BW-Op-Subgoal ├── BW-Op-Subgoal.soar ├── BW-Op-Subgoal.vsa └── BW-Op-Subgoal │ ├── BW-Op-Subgoal.dm │ ├── BW-Op-Subgoal_source.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── blocks-world-operator-subgoaling.dm │ ├── blocks-world-operator-subgoaling_source.soar │ ├── comment.dm │ ├── elaborations │ ├── clear.soar │ ├── detect-success.soar │ ├── elaborations_source.soar │ ├── in-place.soar │ └── monitor.soar │ ├── initialize-blocks-world.soar │ ├── move-block.soar │ └── move-block │ ├── elaborations.soar │ ├── move-block.soar │ └── move-block_source.soar ├── BW-RL ├── BW-RL.soar ├── BW-RL.vsa └── BW-RL │ ├── BW-RL.dm │ ├── BW-RL_source.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── blocks-world-RL.dm │ ├── blocks-world-RL_source.soar │ ├── comment.dm │ ├── elaborations │ ├── RL-selection-knowledge.soar │ ├── clear.soar │ ├── elaborations_source.soar │ ├── in-place.soar │ ├── monitor.soar │ └── reward.soar │ ├── initialize-blocks-world.soar │ └── move-block.soar ├── BW-Simple ├── BW-Simple.soar ├── BW-Simple.vsa └── BW-Simple │ ├── BW-Simple.dm │ ├── BW-Simple_source.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ ├── all_source.soar │ └── print-blocks.soar │ ├── blocks-world-simple.dm │ ├── blocks-world-simple_source.soar │ ├── comment.dm │ ├── elaborations │ ├── clear.soar │ ├── detect-success.soar │ ├── elaborations_source.soar │ ├── inplace.soar │ └── monitor.soar │ ├── hs_err_pid7696.log │ ├── initialize-blocks-world.soar │ └── move-block.soar ├── BW-SoarManual └── blocksworld.soar ├── Deprecated Agents ├── default_soar8.6 │ ├── operator-subgoaling.soar │ ├── readme.txt │ ├── selection-iterative-deepening.soar │ ├── selection-iterative-deepening.vsa │ ├── selection-iterative-deepening │ │ ├── Operator_Tie.soar │ │ ├── Operator_Tie │ │ │ ├── Operator_Tie_source.soar │ │ │ ├── achieved-max-depth.soar │ │ │ ├── decrement-remaining-operators.soar │ │ │ ├── elaborations.soar │ │ │ ├── evaluate-operator.soar │ │ │ ├── evaluate-operator │ │ │ │ ├── Operator_Tie.soar │ │ │ │ ├── Operator_Tie │ │ │ │ │ ├── Operator_Tie_source.soar │ │ │ │ │ ├── elaborations.soar │ │ │ │ │ └── no-more-evaluations.soar │ │ │ │ ├── elaborations.soar │ │ │ │ ├── evaluate-operator_source.soar │ │ │ │ ├── exceed-depth.soar │ │ │ │ └── task-operator.soar │ │ │ ├── increment-current-evaluation-depth.soar │ │ │ ├── init-current-evaluation-depth.soar │ │ │ └── init-remaining-operators.soar │ │ ├── _firstload.soar │ │ ├── all │ │ │ └── all_source.soar │ │ ├── comment.dm │ │ ├── elaborations │ │ │ └── elaborations_source.soar │ │ ├── selection-iterative-deepening.dm │ │ └── selection-iterative-deepening_source.soar │ ├── selection.soar │ ├── selection.vsa │ ├── selection │ │ ├── Operator_Tie.soar │ │ ├── Operator_Tie │ │ │ ├── Operator_Tie_source.soar │ │ │ ├── elaborations.soar │ │ │ ├── evaluate-operator.soar │ │ │ └── evaluate-operator │ │ │ │ ├── Operator_Constraint-Failure.soar │ │ │ │ ├── Operator_Constraint-Failure │ │ │ │ ├── Operator_Constraint-Failure_source.soar │ │ │ │ └── elaborations.soar │ │ │ │ ├── Operator_Tie.soar │ │ │ │ ├── Operator_Tie │ │ │ │ ├── Operator_Tie_source.soar │ │ │ │ └── elaborations.soar │ │ │ │ ├── State_No-Change.soar │ │ │ │ ├── State_No-Change │ │ │ │ ├── State_No-Change.soar │ │ │ │ ├── State_No-Change │ │ │ │ │ ├── State_No-Change_source.soar │ │ │ │ │ └── elaborations.soar │ │ │ │ ├── State_No-Change_source.soar │ │ │ │ └── elaborations.soar │ │ │ │ ├── elaborations.soar │ │ │ │ ├── evaluate-operator_source.soar │ │ │ │ └── task-operator.soar │ │ ├── _firstload.soar │ │ ├── all │ │ │ └── all_source.soar │ │ ├── comment.dm │ │ ├── elaborations │ │ │ ├── elaborations_source.soar │ │ │ └── top-state.soar │ │ ├── selection.dm │ │ └── selection_source.soar │ └── simple.soar ├── mac-planning-9.4 │ ├── comment.dm │ ├── mac-planning.soar │ ├── mac-planning.vsa │ └── mac-planning │ │ ├── Impasse__Operator_Tie.soar │ │ ├── Impasse__Operator_Tie │ │ ├── Impasse__Operator_Tie_source.soar │ │ ├── elaborations.soar │ │ ├── evaluate-operator.soar │ │ └── evaluate-operator │ │ │ ├── elaborations.soar │ │ │ ├── evaluate-operator_source.soar │ │ │ └── move-boat.soar │ │ ├── _firstload.soar │ │ ├── _readme.soar │ │ ├── all │ │ └── all_source.soar │ │ ├── comment.dm │ │ ├── elaborations │ │ ├── elaborations_source.soar │ │ ├── goal-test.soar │ │ ├── monitor.soar │ │ ├── problem-space.soar │ │ └── top-state.soar │ │ ├── initialize-mac.soar │ │ ├── initialize.soar │ │ ├── mac-planning-9.4_source.soar │ │ ├── mac-planning.dm │ │ ├── mac.dm │ │ ├── mac_source.soar │ │ └── move-boat.soar ├── mac1-planning-numeric │ ├── boat.gif │ ├── cannibal.gif │ ├── land.gif │ ├── mac1-planning-numeric.soar │ ├── mac1-planning-numeric.tcl │ ├── missionary.gif │ ├── readme.txt │ └── test.tcl ├── mac1-planning │ ├── boat.gif │ ├── cannibal.gif │ ├── land.gif │ ├── mac1-planning.soar │ ├── mac1-planning.tcl │ ├── missionary.gif │ ├── readme.txt │ └── test.tcl ├── mac1 │ ├── boat.gif │ ├── cannibal.gif │ ├── land.gif │ ├── mac1.soar │ ├── mac1.tcl │ ├── missionary.gif │ ├── readme.txt │ └── test.tcl ├── mac2 │ ├── boat.gif │ ├── cannibal.gif │ ├── land.gif │ ├── mac2.soar │ ├── mac2.tcl │ ├── missionary.gif │ ├── readme.txt │ └── test.tcl ├── mac3-planning │ ├── boat.gif │ ├── cannibal.gif │ ├── land.gif │ ├── mac3-planning.soar │ ├── mac3-planning.tcl │ ├── missionary.gif │ ├── readme.txt │ └── test.tcl ├── soar7 │ ├── blocks-world │ │ └── blocks-world.soar │ ├── default │ │ ├── blocks-opsub.soar │ │ ├── default.soar │ │ ├── operator-subgoaling.soar │ │ ├── selection.soar │ │ ├── simple-opsub.txt │ │ ├── simple-os.soar.txt │ │ ├── simple-selection.soar │ │ ├── simple.soar │ │ └── simpleb-opsub.txt │ ├── eight_puzzle │ │ └── eight_puzzle.soar │ ├── farmer │ │ └── farmer.soar │ ├── kab │ │ └── kab.soar │ ├── missionaries │ │ └── missionaries.soar │ ├── readme.txt │ ├── safe-stack │ │ ├── probs │ │ │ ├── prob.1 │ │ │ ├── prob.2 │ │ │ ├── prob.3 │ │ │ ├── prob.4 │ │ │ ├── prob.5 │ │ │ └── prob.6 │ │ ├── readme.txt │ │ └── safe-stack.soar │ ├── towers-of-hanoi │ │ ├── probs │ │ │ ├── prob.3d.1 │ │ │ ├── prob.3d.2 │ │ │ ├── prob.4d.1 │ │ │ ├── prob.5d.1 │ │ │ └── prob.5d.2 │ │ ├── readme.txt │ │ ├── tn-toh.s7 │ │ └── towers-of-hanoi.soar │ └── waterjug │ │ └── waterjug.soar ├── towers-of-hanoi-fast │ ├── monitor.soar │ ├── readme.txt │ └── towers-of-hanoi-fast.soar ├── towers-of-hanoi-faster │ ├── monitor.soar │ ├── readme.txt │ └── towers-of-hanoi-faster.soar ├── towers-of-hanoi-no-ops │ ├── monitor.soar │ ├── readme.txt │ └── towers-of-hanoi-no-ops.soar ├── towers-of-hanoi-recur │ ├── monitor.soar │ ├── readme.txt │ └── towers-of-hanoi-recur.soar └── water-jug-look-ahead-9.4 │ ├── images │ ├── 00.gif │ ├── 01.gif │ ├── 02.gif │ ├── 03.gif │ ├── 04.gif │ ├── 05.gif │ ├── 10.gif │ ├── 11.gif │ ├── 12.gif │ ├── 13.gif │ ├── 14.gif │ ├── 15.gif │ ├── 20.gif │ ├── 21.gif │ ├── 22.gif │ ├── 23.gif │ ├── 24.gif │ ├── 25.gif │ ├── 30.gif │ ├── 31.gif │ ├── 32.gif │ ├── 33.gif │ ├── 34.gif │ ├── 35.gif │ ├── 3pour5-00.gif │ ├── 3pour5-01.gif │ ├── 3pour5-02.gif │ ├── 3pour5-03.gif │ ├── 3pour5-04.gif │ ├── 3pour5-05.gif │ ├── 3pour5-10.gif │ ├── 3pour5-11.gif │ ├── 3pour5-12.gif │ ├── 3pour5-13.gif │ ├── 3pour5-14.gif │ ├── 3pour5-15.gif │ ├── 3pour5-20.gif │ ├── 3pour5-21.gif │ ├── 3pour5-22.gif │ ├── 3pour5-23.gif │ ├── 3pour5-24.gif │ ├── 3pour5-25.gif │ ├── 3pour5-30.gif │ ├── 3pour5-31.gif │ ├── 3pour5-32.gif │ ├── 3pour5-33.gif │ ├── 3pour5-34.gif │ ├── 3pour5-35.gif │ ├── 5pour3-01.gif │ ├── 5pour3-02.gif │ ├── 5pour3-03.gif │ ├── 5pour3-04.gif │ ├── 5pour3-05.gif │ ├── 5pour3-10.gif │ ├── 5pour3-11.gif │ ├── 5pour3-12.gif │ ├── 5pour3-13.gif │ ├── 5pour3-14.gif │ ├── 5pour3-15.gif │ ├── 5pour3-20.gif │ ├── 5pour3-21.gif │ ├── 5pour3-22.gif │ ├── 5pour3-23.gif │ ├── 5pour3-24.gif │ ├── 5pour3-25.gif │ ├── 5pour3-30.gif │ ├── 5pour3-31.gif │ ├── 5pour3-32.gif │ ├── 5pour3-33.gif │ ├── 5pour3-34.gif │ ├── dump3-00.gif │ ├── dump3-01.gif │ ├── dump3-02.gif │ ├── dump3-03.gif │ ├── dump3-04.gif │ ├── dump3-05.gif │ ├── dump3-10.gif │ ├── dump3-11.gif │ ├── dump3-12.gif │ ├── dump3-13.gif │ ├── dump3-14.gif │ ├── dump3-15.gif │ ├── dump3-20.gif │ ├── dump3-21.gif │ ├── dump3-22.gif │ ├── dump3-23.gif │ ├── dump3-24.gif │ ├── dump3-25.gif │ ├── dump3-30.gif │ ├── dump3-31.gif │ ├── dump3-32.gif │ ├── dump3-33.gif │ ├── dump3-34.gif │ ├── dump3-35.gif │ ├── dump5-00.gif │ ├── dump5-01.gif │ ├── dump5-02.gif │ ├── dump5-03.gif │ ├── dump5-04.gif │ ├── dump5-05.gif │ ├── dump5-10.gif │ ├── dump5-11.gif │ ├── dump5-12.gif │ ├── dump5-13.gif │ ├── dump5-14.gif │ ├── dump5-15.gif │ ├── dump5-20.gif │ ├── dump5-21.gif │ ├── dump5-22.gif │ ├── dump5-23.gif │ ├── dump5-24.gif │ ├── dump5-25.gif │ ├── dump5-30.gif │ ├── dump5-31.gif │ ├── dump5-32.gif │ ├── dump5-33.gif │ ├── dump5-34.gif │ ├── dump5-35.gif │ ├── fill3-0.gif │ ├── fill3-1.gif │ ├── fill3-2.gif │ ├── fill3-3.gif │ ├── fill3-4.gif │ ├── fill3-5.gif │ ├── fill5-0.gif │ ├── fill5-1.gif │ ├── fill5-2.gif │ └── fill5-3.gif │ ├── water-jug-look-ahead.soar │ ├── water-jug-look-ahead.tcl │ ├── water-jug-look-ahead.vsa │ └── water-jug-look-ahead │ ├── Impasse__Operator_Tie.soar │ ├── Impasse__Operator_Tie │ ├── Impasse__Operator_Tie_source.soar │ ├── elaborations.soar │ └── monitor.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ ├── all_source.soar │ └── failure.soar │ ├── comment.dm │ ├── elaborations │ ├── elaborations_source.soar │ ├── empty.soar │ ├── goal-test.soar │ ├── monitor.soar │ └── problem-space.soar │ ├── empty.soar │ ├── fill.soar │ ├── initialize.soar │ ├── pour.soar │ ├── water-jug-look-ahead.dm │ └── water-jug-look-ahead_source.soar ├── algebra ├── algebra.soar ├── algebra.vsa └── algebra │ ├── _chunking-issues.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── accept-input.soar │ ├── accept-input │ ├── accept-input_source.soar │ ├── convert-input-to-clause-form.soar │ ├── convert-input-to-clause-form │ │ ├── convert-input-to-clause-form_source.soar │ │ ├── elaborations.soar │ │ ├── elaborations │ │ │ ├── Impasse__State_No-Change.soar │ │ │ ├── Impasse__State_No-Change │ │ │ │ ├── Impasse__State_No-Change_source.soar │ │ │ │ ├── elaborations.soar │ │ │ │ └── fail-parse.soar │ │ │ └── elaborations_source.soar │ │ ├── process-close-bracket.soar │ │ ├── process-end.soar │ │ ├── process-open-bracket.soar │ │ ├── process-operation.soar │ │ └── process-value.soar │ ├── detect-failure.soar │ ├── elaborations.soar │ ├── print-request.soar │ ├── use-default-equation.soar │ └── wait.soar │ ├── algebra.dm │ ├── algebra_source.soar │ ├── all │ ├── all_source.soar │ └── output.soar │ ├── clean-up-problem.soar │ ├── comment.dm │ ├── elaborations │ ├── _all.soar │ ├── clauses.soar │ ├── elaborations_source.soar │ └── top-state.soar │ ├── initialize-algebra.soar │ ├── print-list.soar │ ├── print-out-equation.soar │ ├── print-out-equation │ ├── elaborations.soar │ ├── print-left-paren.soar │ ├── print-left-side.soar │ ├── print-operation.soar │ ├── print-out-equation_source.soar │ ├── print-right-paren.soar │ ├── print-right-side.soar │ └── print-value.soar │ ├── solve-problem.soar │ ├── solve-problem │ ├── Impasse__State_No-Change.soar │ ├── Impasse__State_No-Change │ │ ├── Impasse__State_No-Change_source.soar │ │ └── elaborations.soar │ ├── across-level-swap.soar │ ├── add-both-sides.soar │ ├── add-local.soar │ ├── add-variable.soar │ ├── add.soar │ ├── associate.soar │ ├── convert-subtract-to-add.soar │ ├── convert-x-1times-x.soar │ ├── distribute.soar │ ├── elaborations.soar │ ├── fail.soar │ ├── finish.soar │ ├── multiply-both-sides.soar │ ├── process-clause.soar │ ├── process-clause │ │ ├── elaborations.soar │ │ └── process-clause_source.soar │ ├── retry.soar │ ├── solve-problem_source.soar │ ├── subtract-variable.soar │ ├── swap-sides.soar │ ├── swap-variable-constant.soar │ └── undistribute.soar │ └── z-last-load.soar ├── arithmetic-smem ├── arithmetic.soar ├── arithmetic.vsa ├── arithmetic │ ├── _firstload.soar │ ├── _readme.soar │ ├── _smem-init.soar │ ├── all │ │ └── all_source.soar │ ├── arithmetic.dm │ ├── arithmetic_source.soar │ ├── comment.dm │ ├── elaborations │ │ ├── Verify.soar │ │ ├── _all.soar │ │ ├── elaborations_source.soar │ │ ├── monitor.soar │ │ ├── pre-computed-problems-10000.soar │ │ ├── pre-computed-problems.soar │ │ ├── pre-computed-problems10000.soar │ │ ├── print-problems.soar │ │ ├── smem.soar │ │ ├── special-digits.soar │ │ └── top-state.soar │ ├── finish-problem.soar │ ├── generate-facts.soar │ ├── generate-facts │ │ ├── check.soar │ │ ├── clean.soar │ │ ├── elaborations.soar │ │ ├── generate-facts_source.soar │ │ ├── init.soar │ │ └── store.soar │ ├── generate-problem.soar │ ├── generate-problem │ │ ├── elaborations.soar │ │ ├── finish-problem-generation.soar │ │ ├── generate-digit1.soar │ │ ├── generate-digit2.soar │ │ ├── generate-operation.soar │ │ ├── generate-problem_source.soar │ │ ├── next-column.soar │ │ └── readme.soar │ ├── initialize-arithmetic.soar │ ├── next-column.soar │ ├── process-column.soar │ ├── process-column │ │ ├── carry-borrow.soar │ │ ├── carry-borrow │ │ │ ├── carry-borrow_source.soar │ │ │ ├── elaborations.soar │ │ │ └── new-column.soar │ │ ├── compute-result.soar │ │ ├── compute-result │ │ │ ├── add-ten.soar │ │ │ ├── add-via-counting.soar │ │ │ ├── add-via-counting │ │ │ │ ├── add-via-counting_source.soar │ │ │ │ ├── count.soar │ │ │ │ ├── detect-completion.soar │ │ │ │ ├── elaborations.soar │ │ │ │ ├── initialize-counting.soar │ │ │ │ ├── readme.soar │ │ │ │ └── store.soar │ │ │ ├── borrow.soar │ │ │ ├── compute-result.soar │ │ │ ├── compute-result_source.soar │ │ │ ├── elaborations.soar │ │ │ ├── subtract-via-counting.soar │ │ │ └── subtract-via-counting │ │ │ │ ├── count.soar │ │ │ │ ├── detect-completion.soar │ │ │ │ ├── elaborations.soar │ │ │ │ ├── initialize-counting.soar │ │ │ │ ├── store.soar │ │ │ │ └── subtract-via-counting_source.soar │ │ ├── elaborations.soar │ │ ├── get-digit1.soar │ │ ├── get-digit1 │ │ │ ├── compute-result.soar │ │ │ ├── elaborations.soar │ │ │ ├── get-digit1_source.soar │ │ │ └── write-digit1.soar │ │ ├── get-digit2.soar │ │ ├── process-column_source.soar │ │ └── write-result.soar │ ├── retrieve-digits.soar │ ├── retrieve-digits │ │ ├── detect-completion.soar │ │ ├── elaborations.soar │ │ ├── init-retrieve-digits.soar │ │ ├── retrieve-digits_source.soar │ │ └── retrieve-next.soar │ └── stop-arithmetic.soar ├── problems-10000.soar ├── problems-3.soar └── problems-5000-smem.soar ├── arithmetic ├── README.docx ├── arithmetic.soar ├── arithmetic.vsa └── arithmetic │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── arithmetic.dm │ ├── arithmetic_source.soar │ ├── comment.dm │ ├── elaborations │ ├── Verify.soar │ ├── _all.soar │ ├── elaborations_source.soar │ ├── monitor.soar │ └── top-state.soar │ ├── finish-problem.soar │ ├── generate-facts.soar │ ├── generate-problem.soar │ ├── generate-problem │ ├── elaborations.soar │ ├── finish-problem-generation.soar │ ├── generate-digit1.soar │ ├── generate-digit2.soar │ ├── generate-operation.soar │ ├── generate-problem_source.soar │ └── next-column.soar │ ├── initialize-arithmetic.soar │ ├── next-column.soar │ ├── process-column.soar │ ├── process-column │ ├── carry.soar │ ├── carry │ │ ├── carry-borrow_source.soar │ │ ├── carry_source.soar │ │ ├── elaborations.soar │ │ └── new-column.soar │ ├── compute-addition-result.soar │ ├── compute-subtraction-result.soar │ ├── compute-subtraction-result │ │ ├── add-ten.soar │ │ ├── borrow.soar │ │ ├── compute-result.soar │ │ ├── compute-result_source.soar │ │ ├── compute-subtract-result_source.soar │ │ ├── compute-subtraction-result_source.soar │ │ └── elaborations.soar │ ├── elaborations.soar │ ├── get-digit1.soar │ ├── get-digit1 │ │ ├── compute-result.soar │ │ ├── elaborations.soar │ │ ├── get-digit1_source.soar │ │ └── write-digit1.soar │ ├── get-digit2.soar │ ├── process-column_source.soar │ └── write-result.soar │ └── stop-arithmetic.soar ├── color-blocks ├── color-blocks-count.soar └── color-blocks.soar ├── count-epmem ├── count-epmem.soar ├── count-epmem.vsa └── count-epmem │ ├── README.soar │ ├── _firstload.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── convert.soar │ ├── convert │ ├── convert-digit.soar │ ├── convert-done.soar │ ├── convert-init.soar │ ├── convert_source.soar │ └── elaborations.soar │ ├── count-epmem.dm │ ├── count-epmem_source.soar │ ├── done.soar │ ├── elaborations │ ├── _all.soar │ ├── cue.soar │ ├── elaborations_source.soar │ └── top-state.soar │ ├── initialize-count-epmem.soar │ ├── max.soar │ ├── power.soar │ ├── power │ ├── elaborations.soar │ ├── power-done.soar │ ├── power-init.soar │ ├── power-next.soar │ └── power_source.soar │ ├── recording.soar │ ├── recording │ ├── elaborations.soar │ ├── recording-convert.soar │ └── recording_source.soar │ ├── storing.soar │ ├── switch.soar │ ├── testing.soar │ └── testing │ ├── elaborations.soar │ ├── testing-convert.soar │ └── testing_source.soar ├── count-test-files ├── New Text Document.txt ├── chunks.soarx ├── count-test.soar ├── count-test.vsa └── count-test │ ├── Impasse__Operator_Tie.soar │ ├── Impasse__Operator_Tie │ ├── Impasse__Operator_Tie_source.soar │ ├── elaborations.soar │ ├── select-super-operator-test7.soar │ └── select-super-operator-test8.soar │ ├── Impasse__State_No-Change.soar │ ├── Impasse__State_No-Change │ ├── Impasse__State_No-Change_source.soar │ ├── elaborations.soar │ ├── propose-super-operator-test5.soar │ └── propose-super-operator-test6.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── count-test.dm │ ├── count-test1.soar │ ├── count-test2.soar │ ├── count-test3.soar │ ├── count-test4.soar │ ├── count-test4 │ ├── count-test4_source.soar │ ├── elaborations.soar │ └── substate-count.soar │ ├── count-test5.soar │ ├── count-test6.soar │ ├── count-test7.soar │ ├── count-test8.soar │ ├── count-test9.soar │ ├── count-test9 │ ├── count-test9.soar │ ├── count-test9_source.soar │ └── elaborations.soar │ ├── count-test_source.soar │ ├── elaborations │ ├── _all.soar │ ├── elaborations_source.soar │ ├── monitor.soar │ └── top-state.soar │ ├── initialize-count-test.soar │ ├── next-test.soar │ ├── set-up-current-test.soar │ └── test-complete.soar ├── count ├── count.soar └── fibonacci.soar ├── default ├── selection-astar.soar ├── selection-astar.vsa ├── selection-astar │ ├── Impasse__Operator_Tie.soar │ ├── Impasse__Operator_Tie │ │ ├── Impasse__Operator_Tie_source.soar │ │ ├── compare-evaluations.soar │ │ ├── compute-best-total-estimate.soar │ │ ├── elaborations.soar │ │ ├── evaluate-operator.soar │ │ ├── evaluate-operator │ │ │ ├── Impasse__State_No-Change.soar │ │ │ ├── Impasse__State_No-Change │ │ │ │ ├── Impasse__State_No-Change_source.soar │ │ │ │ └── elaborations.soar │ │ │ ├── elaborations (HAWK).soar │ │ │ ├── elaborations.soar │ │ │ ├── evaluate-operator_source.soar │ │ │ └── task-operator.soar │ │ ├── remove-stale-estimated-cost.soar │ │ ├── remove-stale-path-cost.soar │ │ └── selection.soar │ ├── _firstload.soar │ ├── all │ │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ │ ├── _all.soar │ │ └── elaborations_source.soar │ ├── selection-astar.dm │ └── selection-astar_source.soar ├── selection-iterative-deepening.soar ├── selection-iterative-deepening.vsa ├── selection-iterative-deepening │ ├── Impasse__Operator_Tie.soar │ ├── Impasse__Operator_Tie │ │ ├── Impasse__Operator_Tie_source.soar │ │ ├── achieved-max-depth.soar │ │ ├── decrement-remaining-operators.soar │ │ ├── elaborations.soar │ │ ├── evaluate-operator.soar │ │ ├── evaluate-operator │ │ │ ├── Impasse__Operator_Tie.soar │ │ │ ├── Impasse__Operator_Tie │ │ │ │ ├── Impasse__Operator_Tie_source.soar │ │ │ │ ├── all-evaluations-failed.soar │ │ │ │ ├── elaborations.soar │ │ │ │ └── no-more-evaluations.soar │ │ │ ├── elaborations.soar │ │ │ ├── evaluate-operator_source.soar │ │ │ ├── exceed-depth.soar │ │ │ └── task-operator.soar │ │ ├── increment-current-evaluation-depth.soar │ │ ├── init-current-evaluation-depth.soar │ │ └── init-remaining-operators.soar │ ├── _firstload.soar │ ├── all │ │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ │ └── elaborations_source.soar │ ├── selection-iterative-deepening.dm │ └── selection-iterative-deepening_source.soar ├── selection-optimal.soar ├── selection-optimal │ ├── Impasse__Operator_Tie.soar │ ├── Impasse__Operator_Tie │ │ ├── Impasse__Operator_Tie_source.soar │ │ ├── elaborations.soar │ │ ├── evaluate-operator.soar │ │ └── evaluate-operator │ │ │ ├── Impasse__Operator_Tie.soar │ │ │ ├── Impasse__Operator_Tie │ │ │ ├── Impasse__Operator_Tie_source.soar │ │ │ ├── elaborations.soar │ │ │ └── evaluate-operator.soar │ │ │ ├── elaborations.soar │ │ │ ├── evaluate-operator_source.soar │ │ │ └── task-operator.soar │ ├── _firstload.soar │ ├── all │ │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ │ └── elaborations_source.soar │ ├── selection-optimal.dm │ └── selection-optimal_source.soar ├── selection.soar ├── selection.vsa ├── selection │ ├── Operator_Tie.soar │ ├── Operator_Tie │ │ ├── Operator_Tie_source.soar │ │ ├── elaborations.soar │ │ ├── evaluate-operator.soar │ │ └── evaluate-operator │ │ │ ├── Operator_Constraint-Failure.soar │ │ │ ├── Operator_Constraint-Failure │ │ │ ├── Operator_Constraint-Failure_source.soar │ │ │ └── elaborations.soar │ │ │ ├── Operator_Tie.soar │ │ │ ├── Operator_Tie │ │ │ ├── Operator_Tie_source.soar │ │ │ └── elaborations.soar │ │ │ ├── State_No-Change.soar │ │ │ ├── State_No-Change │ │ │ ├── State_No-Change.soar │ │ │ ├── State_No-Change │ │ │ │ ├── State_No-Change_source.soar │ │ │ │ └── elaborations.soar │ │ │ ├── State_No-Change_source.soar │ │ │ └── elaborations.soar │ │ │ ├── elaborations.soar │ │ │ ├── evaluate-operator_source.soar │ │ │ └── task-operator.soar │ ├── _firstload.soar │ ├── all │ │ ├── all_source.soar │ │ └── declarations.soar │ ├── comment.dm │ ├── elaborations │ │ ├── elaborations_source.soar │ │ └── top-state.soar │ ├── selection.dm │ └── selection_source.soar └── simple.soar ├── eight-puzzle ├── eight-puzzle.soar ├── eight-puzzle.tcl ├── eight-puzzle.vsa ├── eight-puzzle │ ├── Impasse__Operator_Tie.soar │ ├── Impasse__Operator_Tie │ │ ├── Impasse__Operator_Tie_source.soar │ │ ├── evaluate-operator.soar │ │ └── evaluate-operator │ │ │ ├── elaborations.soar │ │ │ ├── evaluate-operator_source.soar │ │ │ └── move-tile.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ │ └── all_source.soar │ ├── comment.dm │ ├── eight-puzzle.dm │ ├── eight-puzzle_source.soar │ ├── elaborations │ │ ├── elaborations_source.soar │ │ ├── goal-test.soar │ │ ├── monitor.soar │ │ ├── search-control.soar │ │ └── top-state.soar │ ├── initialize-eight-puzzle.soar │ ├── initialize.soar │ └── move-tile.soar └── readme.txt ├── epmem-tutorial └── epmem-tutorial.soar ├── fifteen-puzzle ├── fifteen-puzzle.soar ├── fifteen-puzzle.vsa └── fifteen-puzzle │ ├── Impasse__Operator_Tie.soar │ ├── Impasse__Operator_Tie │ ├── Impasse__Operator_Tie_source.soar │ ├── evaluate-operator.soar │ └── evaluate-operator │ │ ├── elaborations.soar │ │ ├── evaluate-object_source.soar │ │ ├── evaluate-operator_source.soar │ │ └── move-tile.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── eight-puzzle.dm │ ├── eight-puzzle_source.soar │ ├── elaborations │ ├── elaborations_source.soar │ ├── goal-test.soar │ ├── monitor.soar │ ├── search-control.soar │ └── top-state.soar │ ├── fifteen-puzzle.dm │ ├── fifteen-puzzle_source.soar │ ├── initialize-fifteen-puzzle.soar │ ├── initialize.soar │ └── move-tile.soar ├── graph-search-smem ├── graph-search-smem.soar ├── graph-search-smem.vsa └── graph-search-smem │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ ├── _all.soar │ ├── elaborations_source.soar │ ├── halt.soar │ ├── mission-creation-smem.soar │ ├── monitor-waypoint.soar │ ├── smem.soar │ ├── top-state.soar │ ├── waypoint-creation-smem.soar │ └── waypoints.soar │ ├── go-to-location.soar │ ├── go-to-location │ ├── elaborations.soar │ ├── expand-waypoints.soar │ ├── go-to-location_source.soar │ └── go-to-waypoint.soar │ ├── graph-search-smem.dm │ ├── graph-search-smem_source.soar │ ├── graph-search.dm │ ├── graph-search_source.soar │ ├── initialize-graph-search.soar │ ├── initialize-mission.soar │ └── initialize-waypoints.soar ├── graph-search ├── graph-search.soar ├── graph-search.vsa └── graph-search │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ ├── _all.soar │ ├── elaborations_source.soar │ ├── halt.soar │ ├── top-state.soar │ └── waypoints.soar │ ├── go-to-location.soar │ ├── go-to-location │ ├── elaborations.soar │ ├── go-to-location_source.soar │ ├── go-to-waypoint.soar │ └── problem-space.soar │ ├── graph-search.dm │ ├── graph-search_source.soar │ ├── initialize-graph-search.soar │ └── monitor-waypoint.soar ├── hello-world-operator └── hello-world-operator.soar ├── hello-world-rule └── hello-world-rule.soar ├── kb ├── kb.soar ├── kb.vsa └── kb │ ├── _firstload.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── done.soar │ ├── elaborations │ ├── _all.soar │ ├── elaborations_source.soar │ └── top-state.soar │ ├── initialize-kb.soar │ ├── kb.dm │ ├── kb_source.soar │ ├── load.soar │ ├── test-cue.soar │ ├── test-init.soar │ ├── test-next.soar │ ├── test-notify.soar │ ├── test-result.soar │ └── transition.soar ├── left-right ├── left-right.soar ├── left-right.vsa └── left-right │ ├── _firstload.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ ├── _all.soar │ ├── done.soar │ ├── elaborations_source.soar │ ├── reward.soar │ └── top-state.soar │ ├── initialize-left-right.soar │ ├── left-right.dm │ ├── left-right_source.soar │ └── move.soar ├── mac-planning ├── comment.dm ├── mac-planning.soar ├── mac-planning.vsa └── mac-planning │ ├── Impasse__Operator_Tie.soar │ ├── Impasse__Operator_Tie │ ├── Impasse__Operator_Tie_source.soar │ ├── elaborations.soar │ ├── evaluate-operator.soar │ └── evaluate-operator │ │ ├── elaborations.soar │ │ ├── evaluate-operator_source.soar │ │ └── move-boat.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ ├── elaborations_source.soar │ ├── goal-test.soar │ ├── monitor.soar │ ├── problem-space.soar │ └── top-state.soar │ ├── initialize-mac.soar │ ├── initialize.soar │ ├── mac-planning.dm │ ├── mac-planning_source.soar │ ├── mac.dm │ ├── mac_source.soar │ └── move-boat.soar ├── mac ├── mac.soar ├── mac.vsa └── mac │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ ├── elaborations_source.soar │ ├── goal-test.soar │ ├── monitor.soar │ ├── search-control.soar │ └── top-state.soar │ ├── initialize-mac.soar │ ├── initialize.soar │ ├── mac.dm │ ├── mac_source.soar │ └── move-boat.soar ├── rl-unit ├── rl-unit.soar ├── rl-unit.vsa └── rl-unit │ ├── README.soar │ ├── _firstload.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── done.soar │ ├── elaborations │ ├── _all.soar │ ├── elaborations_source.soar │ ├── reward.soar │ ├── rl.soar │ └── top-state.soar │ ├── four.soar │ ├── four │ ├── elaborations.soar │ ├── four-four.soar │ ├── four-one.soar │ ├── four-three.soar │ ├── four-three │ │ ├── elaborations.soar │ │ ├── four-three-one.soar │ │ └── four-three_source.soar │ ├── four-two.soar │ └── four_source.soar │ ├── initialize-rl-unit.soar │ ├── one.soar │ ├── one │ ├── elaborations.soar │ ├── one-one.soar │ ├── one-two.soar │ └── one_source.soar │ ├── rl-unit.dm │ ├── rl-unit_source.soar │ ├── three.soar │ ├── three │ ├── elaborations.soar │ ├── three-one.soar │ ├── three-one │ │ ├── elaborations.soar │ │ ├── three-one-one.soar │ │ └── three-one_source.soar │ ├── three-two.soar │ └── three_source.soar │ ├── two.soar │ └── two │ ├── elaborations.soar │ ├── two-one.soar │ ├── two-three.soar │ ├── two-two.soar │ └── two_source.soar ├── smem-tutorial └── smem-tutorial.soar ├── towers-of-hanoi-recursive ├── monitor.soar ├── readme.txt ├── towers-of-hanoi-recursive.soar ├── towers-of-hanoi-recursive.vsa └── towers-of-hanoi-recursive │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ ├── disk-relations.soar │ ├── elaborations_source.soar │ ├── goal-test.soar │ ├── monitor.soar │ └── top-state.soar │ ├── initialize-toh-recursive.soar │ ├── initialize.soar │ ├── move-disk.soar │ ├── move-disk │ ├── elaborations.soar │ ├── move-disk.soar │ └── move-disk_source.soar │ ├── readme.txt │ ├── towers-of-hanoi-recursive.dm │ ├── towers-of-hanoi-recursive_source.soar │ ├── towers-of-hanoi.dm │ └── towers-of-hanoi_source.soar ├── towers-of-hanoi-simple ├── monitor.soar ├── readme.txt ├── towers-of-hanoi.soar ├── towers-of-hanoi.vsa └── towers-of-hanoi │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ ├── disk-relations.soar │ ├── elaborations_source.soar │ ├── goal-test.soar │ ├── monitor.soar │ └── top-state.soar │ ├── initialize-toh.soar │ ├── initialize.soar │ ├── move-disk.soar │ ├── towers-of-hanoi.dm │ └── towers-of-hanoi_source.soar ├── water-jug-hierarchy ├── water-jug-hierarchy.soar ├── water-jug-hierarchy.vsa └── water-jug-hierarchy │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ ├── elaborations_source.soar │ ├── empty.soar │ ├── goal-test.soar │ └── monitor.soar │ ├── empty.soar │ ├── fill.soar │ ├── fill │ ├── elaborations.soar │ ├── fill-jug.soar │ ├── fill_source.soar │ ├── pick-up.soar │ └── put-down.soar │ ├── initialize-water-jug.soar │ ├── pour.soar │ ├── water-jug-hierarchy.dm │ ├── water-jug-hierarchy_source.soar │ ├── water-jug.dm │ └── water-jug_source.soar ├── water-jug-look-ahead ├── images │ ├── 00.gif │ ├── 01.gif │ ├── 02.gif │ ├── 03.gif │ ├── 04.gif │ ├── 05.gif │ ├── 10.gif │ ├── 11.gif │ ├── 12.gif │ ├── 13.gif │ ├── 14.gif │ ├── 15.gif │ ├── 20.gif │ ├── 21.gif │ ├── 22.gif │ ├── 23.gif │ ├── 24.gif │ ├── 25.gif │ ├── 30.gif │ ├── 31.gif │ ├── 32.gif │ ├── 33.gif │ ├── 34.gif │ ├── 35.gif │ ├── 3pour5-00.gif │ ├── 3pour5-01.gif │ ├── 3pour5-02.gif │ ├── 3pour5-03.gif │ ├── 3pour5-04.gif │ ├── 3pour5-05.gif │ ├── 3pour5-10.gif │ ├── 3pour5-11.gif │ ├── 3pour5-12.gif │ ├── 3pour5-13.gif │ ├── 3pour5-14.gif │ ├── 3pour5-15.gif │ ├── 3pour5-20.gif │ ├── 3pour5-21.gif │ ├── 3pour5-22.gif │ ├── 3pour5-23.gif │ ├── 3pour5-24.gif │ ├── 3pour5-25.gif │ ├── 3pour5-30.gif │ ├── 3pour5-31.gif │ ├── 3pour5-32.gif │ ├── 3pour5-33.gif │ ├── 3pour5-34.gif │ ├── 3pour5-35.gif │ ├── 5pour3-01.gif │ ├── 5pour3-02.gif │ ├── 5pour3-03.gif │ ├── 5pour3-04.gif │ ├── 5pour3-05.gif │ ├── 5pour3-10.gif │ ├── 5pour3-11.gif │ ├── 5pour3-12.gif │ ├── 5pour3-13.gif │ ├── 5pour3-14.gif │ ├── 5pour3-15.gif │ ├── 5pour3-20.gif │ ├── 5pour3-21.gif │ ├── 5pour3-22.gif │ ├── 5pour3-23.gif │ ├── 5pour3-24.gif │ ├── 5pour3-25.gif │ ├── 5pour3-30.gif │ ├── 5pour3-31.gif │ ├── 5pour3-32.gif │ ├── 5pour3-33.gif │ ├── 5pour3-34.gif │ ├── dump3-00.gif │ ├── dump3-01.gif │ ├── dump3-02.gif │ ├── dump3-03.gif │ ├── dump3-04.gif │ ├── dump3-05.gif │ ├── dump3-10.gif │ ├── dump3-11.gif │ ├── dump3-12.gif │ ├── dump3-13.gif │ ├── dump3-14.gif │ ├── dump3-15.gif │ ├── dump3-20.gif │ ├── dump3-21.gif │ ├── dump3-22.gif │ ├── dump3-23.gif │ ├── dump3-24.gif │ ├── dump3-25.gif │ ├── dump3-30.gif │ ├── dump3-31.gif │ ├── dump3-32.gif │ ├── dump3-33.gif │ ├── dump3-34.gif │ ├── dump3-35.gif │ ├── dump5-00.gif │ ├── dump5-01.gif │ ├── dump5-02.gif │ ├── dump5-03.gif │ ├── dump5-04.gif │ ├── dump5-05.gif │ ├── dump5-10.gif │ ├── dump5-11.gif │ ├── dump5-12.gif │ ├── dump5-13.gif │ ├── dump5-14.gif │ ├── dump5-15.gif │ ├── dump5-20.gif │ ├── dump5-21.gif │ ├── dump5-22.gif │ ├── dump5-23.gif │ ├── dump5-24.gif │ ├── dump5-25.gif │ ├── dump5-30.gif │ ├── dump5-31.gif │ ├── dump5-32.gif │ ├── dump5-33.gif │ ├── dump5-34.gif │ ├── dump5-35.gif │ ├── fill3-0.gif │ ├── fill3-1.gif │ ├── fill3-2.gif │ ├── fill3-3.gif │ ├── fill3-4.gif │ ├── fill3-5.gif │ ├── fill5-0.gif │ ├── fill5-1.gif │ ├── fill5-2.gif │ └── fill5-3.gif ├── water-jug-look-ahead.soar ├── water-jug-look-ahead.tcl ├── water-jug-look-ahead.vsa └── water-jug-look-ahead │ ├── Impasse__Operator_Tie.soar │ ├── Impasse__Operator_Tie │ ├── Impasse__Operator_Tie_source.soar │ ├── elaborations.soar │ └── monitor.soar │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ ├── all_source.soar │ └── failure.soar │ ├── comment.dm │ ├── elaborations │ ├── elaborations_source.soar │ ├── empty.soar │ ├── goal-test.soar │ ├── monitor.soar │ └── problem-space.soar │ ├── empty.soar │ ├── fill.soar │ ├── initialize.soar │ ├── pour.soar │ ├── water-jug-look-ahead.dm │ └── water-jug-look-ahead_source.soar ├── water-jug-rl ├── water-jug-rl.soar ├── water-jug-rl.vsa └── water-jug-rl │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ ├── elaborations_source.soar │ ├── empty.soar │ ├── goal-test.soar │ └── monitor.soar │ ├── empty.soar │ ├── fill.soar │ ├── initialize-water-jug.soar │ ├── pour.soar │ ├── record.soar │ ├── water-jug-rl.dm │ ├── water-jug-rl_source.soar │ ├── water-jug.dm │ └── water-jug_source.soar ├── water-jug-simple ├── images │ ├── 00.gif │ ├── 01.gif │ ├── 02.gif │ ├── 03.gif │ ├── 04.gif │ ├── 05.gif │ ├── 10.gif │ ├── 11.gif │ ├── 12.gif │ ├── 13.gif │ ├── 14.gif │ ├── 15.gif │ ├── 20.gif │ ├── 21.gif │ ├── 22.gif │ ├── 23.gif │ ├── 24.gif │ ├── 25.gif │ ├── 30.gif │ ├── 31.gif │ ├── 32.gif │ ├── 33.gif │ ├── 34.gif │ ├── 35.gif │ ├── 3pour5-00.gif │ ├── 3pour5-01.gif │ ├── 3pour5-02.gif │ ├── 3pour5-03.gif │ ├── 3pour5-04.gif │ ├── 3pour5-05.gif │ ├── 3pour5-10.gif │ ├── 3pour5-11.gif │ ├── 3pour5-12.gif │ ├── 3pour5-13.gif │ ├── 3pour5-14.gif │ ├── 3pour5-15.gif │ ├── 3pour5-20.gif │ ├── 3pour5-21.gif │ ├── 3pour5-22.gif │ ├── 3pour5-23.gif │ ├── 3pour5-24.gif │ ├── 3pour5-25.gif │ ├── 3pour5-30.gif │ ├── 3pour5-31.gif │ ├── 3pour5-32.gif │ ├── 3pour5-33.gif │ ├── 3pour5-34.gif │ ├── 3pour5-35.gif │ ├── 5pour3-01.gif │ ├── 5pour3-02.gif │ ├── 5pour3-03.gif │ ├── 5pour3-04.gif │ ├── 5pour3-05.gif │ ├── 5pour3-10.gif │ ├── 5pour3-11.gif │ ├── 5pour3-12.gif │ ├── 5pour3-13.gif │ ├── 5pour3-14.gif │ ├── 5pour3-15.gif │ ├── 5pour3-20.gif │ ├── 5pour3-21.gif │ ├── 5pour3-22.gif │ ├── 5pour3-23.gif │ ├── 5pour3-24.gif │ ├── 5pour3-25.gif │ ├── 5pour3-30.gif │ ├── 5pour3-31.gif │ ├── 5pour3-32.gif │ ├── 5pour3-33.gif │ ├── 5pour3-34.gif │ ├── dump3-00.gif │ ├── dump3-01.gif │ ├── dump3-02.gif │ ├── dump3-03.gif │ ├── dump3-04.gif │ ├── dump3-05.gif │ ├── dump3-10.gif │ ├── dump3-11.gif │ ├── dump3-12.gif │ ├── dump3-13.gif │ ├── dump3-14.gif │ ├── dump3-15.gif │ ├── dump3-20.gif │ ├── dump3-21.gif │ ├── dump3-22.gif │ ├── dump3-23.gif │ ├── dump3-24.gif │ ├── dump3-25.gif │ ├── dump3-30.gif │ ├── dump3-31.gif │ ├── dump3-32.gif │ ├── dump3-33.gif │ ├── dump3-34.gif │ ├── dump3-35.gif │ ├── dump5-00.gif │ ├── dump5-01.gif │ ├── dump5-02.gif │ ├── dump5-03.gif │ ├── dump5-04.gif │ ├── dump5-05.gif │ ├── dump5-10.gif │ ├── dump5-11.gif │ ├── dump5-12.gif │ ├── dump5-13.gif │ ├── dump5-14.gif │ ├── dump5-15.gif │ ├── dump5-20.gif │ ├── dump5-21.gif │ ├── dump5-22.gif │ ├── dump5-23.gif │ ├── dump5-24.gif │ ├── dump5-25.gif │ ├── dump5-30.gif │ ├── dump5-31.gif │ ├── dump5-32.gif │ ├── dump5-33.gif │ ├── dump5-34.gif │ ├── dump5-35.gif │ ├── fill3-0.gif │ ├── fill3-1.gif │ ├── fill3-2.gif │ ├── fill3-3.gif │ ├── fill3-4.gif │ ├── fill3-5.gif │ ├── fill5-0.gif │ ├── fill5-1.gif │ ├── fill5-2.gif │ └── fill5-3.gif ├── water-jug.soar ├── water-jug.tcl ├── water-jug.vsa └── water-jug │ ├── _firstload.soar │ ├── _readme.soar │ ├── all │ └── all_source.soar │ ├── comment.dm │ ├── elaborations │ ├── elaborations_source.soar │ ├── empty.soar │ ├── goal-test.soar │ └── monitor.soar │ ├── empty.soar │ ├── fill.soar │ ├── initialize-water-jug.soar │ ├── pour.soar │ ├── record.soar │ ├── water-jug.dm │ └── water-jug_source.soar └── water-jug-tie ├── water-jug-tie.soar ├── water-jug-tie.vsa └── water-jug-tie ├── Impasse__Operator_Tie.soar ├── Impasse__Operator_Tie ├── Impasse__Operator_Tie_source.soar ├── create-preferences.soar ├── elaborations.soar └── evaluate-operator.soar ├── _firstload.soar ├── _readme.soar ├── all └── all_source.soar ├── comment.dm ├── elaborations ├── elaborations_source.soar ├── empty.soar ├── goal-test.soar └── monitor.soar ├── empty.soar ├── fill.soar ├── initialize-water-jug.soar ├── pour.soar ├── record.soar ├── water-jug-tie.dm ├── water-jug-tie_source.soar ├── water-jug.dm └── water-jug_source.soar /BW-Hierarchical-LA/BW-Hierarchical-LA.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Hierarchical-LA/BW-Hierarchical-LA.soar -------------------------------------------------------------------------------- /BW-Hierarchical-LA/BW-Hierarchical-LA.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Hierarchical-LA/BW-Hierarchical-LA.vsa -------------------------------------------------------------------------------- /BW-Hierarchical-LA/BW-Hierarchical-LA/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-Hierarchical-LA/BW-Hierarchical-LA/Impasse__Operator_Tie/evaluate-operator.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-Hierarchical-LA/BW-Hierarchical-LA/Impasse__Operator_Tie/evaluate-operator/Impasse__State_No-Change.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-Hierarchical-LA/BW-Hierarchical-LA/Impasse__Operator_Tie/evaluate-operator/Impasse__State_No-Change/Impasse__State_No-Change.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-Hierarchical-LA/BW-Hierarchical-LA/Impasse__Operator_Tie/evaluate-operator/Impasse__State_No-Change/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-Hierarchical-LA/BW-Hierarchical-LA/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Hierarchical-LA/BW-Hierarchical-LA/_readme.soar -------------------------------------------------------------------------------- /BW-Hierarchical-LA/BW-Hierarchical-LA/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-Hierarchical-LA/BW-Hierarchical-LA/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Hierarchical-LA/BW-Hierarchical-LA/comment.dm -------------------------------------------------------------------------------- /BW-Hierarchical-LA/BW-Hierarchical-LA/elaborations/selection.soar: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BW-Hierarchical/BW-Hierarchical.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Hierarchical/BW-Hierarchical.soar -------------------------------------------------------------------------------- /BW-Hierarchical/BW-Hierarchical.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Hierarchical/BW-Hierarchical.vsa -------------------------------------------------------------------------------- /BW-Hierarchical/BW-Hierarchical/BW-Hierarchical.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Hierarchical/BW-Hierarchical/BW-Hierarchical.dm -------------------------------------------------------------------------------- /BW-Hierarchical/BW-Hierarchical/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Hierarchical/BW-Hierarchical/_firstload.soar -------------------------------------------------------------------------------- /BW-Hierarchical/BW-Hierarchical/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Hierarchical/BW-Hierarchical/_readme.soar -------------------------------------------------------------------------------- /BW-Hierarchical/BW-Hierarchical/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-Hierarchical/BW-Hierarchical/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Hierarchical/BW-Hierarchical/comment.dm -------------------------------------------------------------------------------- /BW-Hierarchical/BW-Hierarchical/move-block.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Hierarchical/BW-Hierarchical/move-block.soar -------------------------------------------------------------------------------- /BW-LA-state-eval/BW-LA-state-eval.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA-state-eval/BW-LA-state-eval.soar -------------------------------------------------------------------------------- /BW-LA-state-eval/BW-LA-state-eval.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA-state-eval/BW-LA-state-eval.vsa -------------------------------------------------------------------------------- /BW-LA-state-eval/BW-LA-state-eval/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-LA-state-eval/BW-LA-state-eval/Impasse__Operator_Tie/evaluate-operator.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-LA-state-eval/BW-LA-state-eval/Impasse__Operator_Tie/evaluate-operator/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-LA-state-eval/BW-LA-state-eval/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA-state-eval/BW-LA-state-eval/_firstload.soar -------------------------------------------------------------------------------- /BW-LA-state-eval/BW-LA-state-eval/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA-state-eval/BW-LA-state-eval/_readme.soar -------------------------------------------------------------------------------- /BW-LA-state-eval/BW-LA-state-eval/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-LA-state-eval/BW-LA-state-eval/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA-state-eval/BW-LA-state-eval/comment.dm -------------------------------------------------------------------------------- /BW-LA-state-eval/BW-LA-state-eval/move-block.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA-state-eval/BW-LA-state-eval/move-block.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA.vsa -------------------------------------------------------------------------------- /BW-LA/BW-LA/BW-LA.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/BW-LA.dm -------------------------------------------------------------------------------- /BW-LA/BW-LA/BW-LA_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/BW-LA_source.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/_firstload.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/_readme.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-LA/BW-LA/blocks-world-lookahead.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/blocks-world-lookahead.dm -------------------------------------------------------------------------------- /BW-LA/BW-LA/blocks-world-lookahead_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/blocks-world-lookahead_source.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/comment.dm -------------------------------------------------------------------------------- /BW-LA/BW-LA/elaborations/clear.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/elaborations/clear.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/elaborations/detect-success.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/elaborations/detect-success.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/elaborations/elaborations_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/elaborations/elaborations_source.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/elaborations/in-place.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/elaborations/in-place.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/elaborations/monitor.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/elaborations/monitor.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/elaborations/moveable.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/elaborations/moveable.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/elaborations/problem-space.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/elaborations/problem-space.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/elaborations/selection-failure.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/elaborations/selection-failure.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/initialize-blocks-world.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/initialize-blocks-world.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/move-block.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/move-block.soar -------------------------------------------------------------------------------- /BW-LA/BW-LA/search-control.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-LA/BW-LA/search-control.soar -------------------------------------------------------------------------------- /BW-Op-Subgoal-RL/BW-Op-Subgoal-RL.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal-RL/BW-Op-Subgoal-RL.soar -------------------------------------------------------------------------------- /BW-Op-Subgoal-RL/BW-Op-Subgoal-RL.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal-RL/BW-Op-Subgoal-RL.vsa -------------------------------------------------------------------------------- /BW-Op-Subgoal-RL/BW-Op-Subgoal-RL/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal-RL/BW-Op-Subgoal-RL/_firstload.soar -------------------------------------------------------------------------------- /BW-Op-Subgoal-RL/BW-Op-Subgoal-RL/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal-RL/BW-Op-Subgoal-RL/_readme.soar -------------------------------------------------------------------------------- /BW-Op-Subgoal-RL/BW-Op-Subgoal-RL/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-Op-Subgoal-RL/BW-Op-Subgoal-RL/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal-RL/BW-Op-Subgoal-RL/comment.dm -------------------------------------------------------------------------------- /BW-Op-Subgoal-RL/BW-Op-Subgoal-RL/move-block.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal-RL/BW-Op-Subgoal-RL/move-block.soar -------------------------------------------------------------------------------- /BW-Op-Subgoal/BW-Op-Subgoal.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal/BW-Op-Subgoal.soar -------------------------------------------------------------------------------- /BW-Op-Subgoal/BW-Op-Subgoal.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal/BW-Op-Subgoal.vsa -------------------------------------------------------------------------------- /BW-Op-Subgoal/BW-Op-Subgoal/BW-Op-Subgoal.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal/BW-Op-Subgoal/BW-Op-Subgoal.dm -------------------------------------------------------------------------------- /BW-Op-Subgoal/BW-Op-Subgoal/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal/BW-Op-Subgoal/_firstload.soar -------------------------------------------------------------------------------- /BW-Op-Subgoal/BW-Op-Subgoal/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal/BW-Op-Subgoal/_readme.soar -------------------------------------------------------------------------------- /BW-Op-Subgoal/BW-Op-Subgoal/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-Op-Subgoal/BW-Op-Subgoal/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal/BW-Op-Subgoal/comment.dm -------------------------------------------------------------------------------- /BW-Op-Subgoal/BW-Op-Subgoal/move-block.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Op-Subgoal/BW-Op-Subgoal/move-block.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL.vsa -------------------------------------------------------------------------------- /BW-RL/BW-RL/BW-RL.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/BW-RL.dm -------------------------------------------------------------------------------- /BW-RL/BW-RL/BW-RL_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/BW-RL_source.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/_firstload.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/_readme.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BW-RL/BW-RL/blocks-world-RL.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/blocks-world-RL.dm -------------------------------------------------------------------------------- /BW-RL/BW-RL/blocks-world-RL_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/blocks-world-RL_source.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/comment.dm -------------------------------------------------------------------------------- /BW-RL/BW-RL/elaborations/clear.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/elaborations/clear.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL/elaborations/elaborations_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/elaborations/elaborations_source.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL/elaborations/in-place.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/elaborations/in-place.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL/elaborations/monitor.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/elaborations/monitor.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL/elaborations/reward.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/elaborations/reward.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL/initialize-blocks-world.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/initialize-blocks-world.soar -------------------------------------------------------------------------------- /BW-RL/BW-RL/move-block.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-RL/BW-RL/move-block.soar -------------------------------------------------------------------------------- /BW-Simple/BW-Simple.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple.soar -------------------------------------------------------------------------------- /BW-Simple/BW-Simple.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple.vsa -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/BW-Simple.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/BW-Simple.dm -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/BW-Simple_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/BW-Simple_source.soar -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/_firstload.soar -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/_readme.soar -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/all/all_source.soar: -------------------------------------------------------------------------------- 1 | source print-blocks.soar 2 | -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/all/print-blocks.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/all/print-blocks.soar -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/blocks-world-simple.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/blocks-world-simple.dm -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/comment.dm -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/elaborations/clear.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/elaborations/clear.soar -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/elaborations/inplace.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/elaborations/inplace.soar -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/elaborations/monitor.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/elaborations/monitor.soar -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/hs_err_pid7696.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/hs_err_pid7696.log -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/initialize-blocks-world.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/initialize-blocks-world.soar -------------------------------------------------------------------------------- /BW-Simple/BW-Simple/move-block.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-Simple/BW-Simple/move-block.soar -------------------------------------------------------------------------------- /BW-SoarManual/blocksworld.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/BW-SoarManual/blocksworld.soar -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/default_soar8.6/readme.txt -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection-iterative-deepening/Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection-iterative-deepening/Operator_Tie/evaluate-operator/Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection-iterative-deepening/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection-iterative-deepening/elaborations/elaborations_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/default_soar8.6/selection.soar -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/default_soar8.6/selection.vsa -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection/Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection/Operator_Tie/evaluate-operator/Operator_Constraint-Failure.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection/Operator_Tie/evaluate-operator/Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection/Operator_Tie/evaluate-operator/Operator_Tie/Operator_Tie_source.soar: -------------------------------------------------------------------------------- 1 | source elaborations.soar 2 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection/Operator_Tie/evaluate-operator/State_No-Change.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection/Operator_Tie/evaluate-operator/State_No-Change/State_No-Change.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection/Operator_Tie/evaluate-operator/State_No-Change/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/selection/elaborations/elaborations_source.soar: -------------------------------------------------------------------------------- 1 | source top-state.soar 2 | -------------------------------------------------------------------------------- /Deprecated Agents/default_soar8.6/simple.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/default_soar8.6/simple.soar -------------------------------------------------------------------------------- /Deprecated Agents/mac-planning-9.4/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac-planning-9.4/comment.dm -------------------------------------------------------------------------------- /Deprecated Agents/mac-planning-9.4/mac-planning/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/mac-planning-9.4/mac-planning/Impasse__Operator_Tie/evaluate-operator.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/mac-planning-9.4/mac-planning/Impasse__Operator_Tie/evaluate-operator/move-boat.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/mac-planning-9.4/mac-planning/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning-numeric/boat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning-numeric/boat.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning-numeric/land.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning-numeric/land.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning-numeric/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning-numeric/readme.txt -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning-numeric/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning-numeric/test.tcl -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning/boat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning/boat.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning/cannibal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning/cannibal.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning/land.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning/land.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning/mac1-planning.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning/mac1-planning.soar -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning/mac1-planning.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning/mac1-planning.tcl -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning/missionary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning/missionary.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning/readme.txt -------------------------------------------------------------------------------- /Deprecated Agents/mac1-planning/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1-planning/test.tcl -------------------------------------------------------------------------------- /Deprecated Agents/mac1/boat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1/boat.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac1/cannibal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1/cannibal.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac1/land.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1/land.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac1/mac1.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1/mac1.soar -------------------------------------------------------------------------------- /Deprecated Agents/mac1/mac1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1/mac1.tcl -------------------------------------------------------------------------------- /Deprecated Agents/mac1/missionary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1/missionary.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1/readme.txt -------------------------------------------------------------------------------- /Deprecated Agents/mac1/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac1/test.tcl -------------------------------------------------------------------------------- /Deprecated Agents/mac2/boat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac2/boat.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac2/cannibal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac2/cannibal.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac2/land.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac2/land.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac2/mac2.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac2/mac2.soar -------------------------------------------------------------------------------- /Deprecated Agents/mac2/mac2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac2/mac2.tcl -------------------------------------------------------------------------------- /Deprecated Agents/mac2/missionary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac2/missionary.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac2/readme.txt -------------------------------------------------------------------------------- /Deprecated Agents/mac2/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac2/test.tcl -------------------------------------------------------------------------------- /Deprecated Agents/mac3-planning/boat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac3-planning/boat.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac3-planning/cannibal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac3-planning/cannibal.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac3-planning/land.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac3-planning/land.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac3-planning/mac3-planning.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac3-planning/mac3-planning.soar -------------------------------------------------------------------------------- /Deprecated Agents/mac3-planning/mac3-planning.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac3-planning/mac3-planning.tcl -------------------------------------------------------------------------------- /Deprecated Agents/mac3-planning/missionary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac3-planning/missionary.gif -------------------------------------------------------------------------------- /Deprecated Agents/mac3-planning/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac3-planning/readme.txt -------------------------------------------------------------------------------- /Deprecated Agents/mac3-planning/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/mac3-planning/test.tcl -------------------------------------------------------------------------------- /Deprecated Agents/soar7/default/blocks-opsub.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/default/blocks-opsub.soar -------------------------------------------------------------------------------- /Deprecated Agents/soar7/default/default.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/default/default.soar -------------------------------------------------------------------------------- /Deprecated Agents/soar7/default/selection.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/default/selection.soar -------------------------------------------------------------------------------- /Deprecated Agents/soar7/default/simple-opsub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/default/simple-opsub.txt -------------------------------------------------------------------------------- /Deprecated Agents/soar7/default/simple-os.soar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/default/simple-os.soar.txt -------------------------------------------------------------------------------- /Deprecated Agents/soar7/default/simple.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/default/simple.soar -------------------------------------------------------------------------------- /Deprecated Agents/soar7/default/simpleb-opsub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/default/simpleb-opsub.txt -------------------------------------------------------------------------------- /Deprecated Agents/soar7/farmer/farmer.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/farmer/farmer.soar -------------------------------------------------------------------------------- /Deprecated Agents/soar7/kab/kab.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/kab/kab.soar -------------------------------------------------------------------------------- /Deprecated Agents/soar7/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/readme.txt -------------------------------------------------------------------------------- /Deprecated Agents/soar7/safe-stack/probs/prob.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/safe-stack/probs/prob.1 -------------------------------------------------------------------------------- /Deprecated Agents/soar7/safe-stack/probs/prob.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/safe-stack/probs/prob.2 -------------------------------------------------------------------------------- /Deprecated Agents/soar7/safe-stack/probs/prob.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/safe-stack/probs/prob.3 -------------------------------------------------------------------------------- /Deprecated Agents/soar7/safe-stack/probs/prob.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/safe-stack/probs/prob.4 -------------------------------------------------------------------------------- /Deprecated Agents/soar7/safe-stack/probs/prob.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/safe-stack/probs/prob.5 -------------------------------------------------------------------------------- /Deprecated Agents/soar7/safe-stack/probs/prob.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/safe-stack/probs/prob.6 -------------------------------------------------------------------------------- /Deprecated Agents/soar7/safe-stack/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/safe-stack/readme.txt -------------------------------------------------------------------------------- /Deprecated Agents/soar7/safe-stack/safe-stack.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/safe-stack/safe-stack.soar -------------------------------------------------------------------------------- /Deprecated Agents/soar7/towers-of-hanoi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/towers-of-hanoi/readme.txt -------------------------------------------------------------------------------- /Deprecated Agents/soar7/towers-of-hanoi/tn-toh.s7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/towers-of-hanoi/tn-toh.s7 -------------------------------------------------------------------------------- /Deprecated Agents/soar7/waterjug/waterjug.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/soar7/waterjug/waterjug.soar -------------------------------------------------------------------------------- /Deprecated Agents/towers-of-hanoi-fast/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/towers-of-hanoi-fast/readme.txt -------------------------------------------------------------------------------- /Deprecated Agents/towers-of-hanoi-recur/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/Deprecated Agents/towers-of-hanoi-recur/readme.txt -------------------------------------------------------------------------------- /Deprecated Agents/water-jug-look-ahead-9.4/water-jug-look-ahead/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deprecated Agents/water-jug-look-ahead-9.4/water-jug-look-ahead/all/all_source.soar: -------------------------------------------------------------------------------- 1 | source failure.soar 2 | -------------------------------------------------------------------------------- /algebra/algebra.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra.soar -------------------------------------------------------------------------------- /algebra/algebra.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra.vsa -------------------------------------------------------------------------------- /algebra/algebra/_chunking-issues.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/_chunking-issues.soar -------------------------------------------------------------------------------- /algebra/algebra/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/_firstload.soar -------------------------------------------------------------------------------- /algebra/algebra/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/_readme.soar -------------------------------------------------------------------------------- /algebra/algebra/accept-input.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/accept-input.soar -------------------------------------------------------------------------------- /algebra/algebra/accept-input/convert-input-to-clause-form/elaborations/Impasse__State_No-Change.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algebra/algebra/accept-input/convert-input-to-clause-form/elaborations/Impasse__State_No-Change/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algebra/algebra/accept-input/detect-failure.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/accept-input/detect-failure.soar -------------------------------------------------------------------------------- /algebra/algebra/accept-input/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algebra/algebra/accept-input/print-request.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/accept-input/print-request.soar -------------------------------------------------------------------------------- /algebra/algebra/accept-input/wait.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/accept-input/wait.soar -------------------------------------------------------------------------------- /algebra/algebra/algebra.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/algebra.dm -------------------------------------------------------------------------------- /algebra/algebra/algebra_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/algebra_source.soar -------------------------------------------------------------------------------- /algebra/algebra/all/all_source.soar: -------------------------------------------------------------------------------- 1 | source output.soar 2 | -------------------------------------------------------------------------------- /algebra/algebra/all/output.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/all/output.soar -------------------------------------------------------------------------------- /algebra/algebra/clean-up-problem.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/clean-up-problem.soar -------------------------------------------------------------------------------- /algebra/algebra/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/comment.dm -------------------------------------------------------------------------------- /algebra/algebra/elaborations/_all.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/elaborations/_all.soar -------------------------------------------------------------------------------- /algebra/algebra/elaborations/clauses.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/elaborations/clauses.soar -------------------------------------------------------------------------------- /algebra/algebra/elaborations/top-state.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/elaborations/top-state.soar -------------------------------------------------------------------------------- /algebra/algebra/initialize-algebra.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/initialize-algebra.soar -------------------------------------------------------------------------------- /algebra/algebra/print-list.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/print-list.soar -------------------------------------------------------------------------------- /algebra/algebra/print-out-equation.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/print-out-equation.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/Impasse__State_No-Change.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/Impasse__State_No-Change/Impasse__State_No-Change_source.soar: -------------------------------------------------------------------------------- 1 | source elaborations.soar 2 | -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/add-both-sides.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/add-both-sides.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/add-local.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/add-local.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/add-variable.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/add-variable.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/add.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/add.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/associate.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/associate.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/distribute.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/distribute.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/elaborations.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/elaborations.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/fail.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/fail.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/finish.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/finish.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/process-clause.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/process-clause.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/process-clause/process-clause_source.soar: -------------------------------------------------------------------------------- 1 | source elaborations.soar 2 | -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/retry.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/retry.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/swap-sides.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/swap-sides.soar -------------------------------------------------------------------------------- /algebra/algebra/solve-problem/undistribute.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/solve-problem/undistribute.soar -------------------------------------------------------------------------------- /algebra/algebra/z-last-load.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/algebra/algebra/z-last-load.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic.vsa -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/_firstload.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/_readme.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/_smem-init.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/_smem-init.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/arithmetic.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/arithmetic.dm -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/arithmetic_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/arithmetic_source.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/comment.dm -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/elaborations/_all.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/elaborations/_all.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/elaborations/pre-computed-problems-10000.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/elaborations/pre-computed-problems10000.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/elaborations/smem.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/elaborations/smem.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/finish-problem.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/finish-problem.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/generate-facts.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/generate-facts.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/generate-facts/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/generate-problem.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/generate-problem.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/generate-problem/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/next-column.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/next-column.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/process-column.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/process-column.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/process-column/carry-borrow/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/process-column/compute-result/add-via-counting/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/process-column/compute-result/subtract-via-counting/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/process-column/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/retrieve-digits.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/retrieve-digits.soar -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/retrieve-digits/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic-smem/arithmetic/stop-arithmetic.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/arithmetic/stop-arithmetic.soar -------------------------------------------------------------------------------- /arithmetic-smem/problems-10000.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/problems-10000.soar -------------------------------------------------------------------------------- /arithmetic-smem/problems-3.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/problems-3.soar -------------------------------------------------------------------------------- /arithmetic-smem/problems-5000-smem.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic-smem/problems-5000-smem.soar -------------------------------------------------------------------------------- /arithmetic/README.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/README.docx -------------------------------------------------------------------------------- /arithmetic/arithmetic.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic.vsa -------------------------------------------------------------------------------- /arithmetic/arithmetic/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/_firstload.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/_readme.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic/arithmetic/arithmetic.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/arithmetic.dm -------------------------------------------------------------------------------- /arithmetic/arithmetic/arithmetic_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/arithmetic_source.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/comment.dm -------------------------------------------------------------------------------- /arithmetic/arithmetic/elaborations/Verify.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/elaborations/Verify.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/elaborations/_all.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/elaborations/_all.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/elaborations/monitor.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/elaborations/monitor.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/elaborations/top-state.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/elaborations/top-state.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/finish-problem.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/finish-problem.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/generate-facts.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/generate-facts.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/generate-problem.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/generate-problem.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/generate-problem/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic/arithmetic/initialize-arithmetic.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/initialize-arithmetic.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/next-column.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/next-column.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/process-column.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/process-column.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/process-column/carry.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/process-column/carry.soar -------------------------------------------------------------------------------- /arithmetic/arithmetic/process-column/carry/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic/arithmetic/process-column/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arithmetic/arithmetic/stop-arithmetic.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/arithmetic/arithmetic/stop-arithmetic.soar -------------------------------------------------------------------------------- /color-blocks/color-blocks-count.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/color-blocks/color-blocks-count.soar -------------------------------------------------------------------------------- /color-blocks/color-blocks.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/color-blocks/color-blocks.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem.vsa -------------------------------------------------------------------------------- /count-epmem/count-epmem/README.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/README.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/_firstload.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /count-epmem/count-epmem/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/comment.dm -------------------------------------------------------------------------------- /count-epmem/count-epmem/convert.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /count-epmem/count-epmem/convert/convert-digit.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/convert/convert-digit.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/convert/convert-done.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/convert/convert-done.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/convert/convert-init.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/convert/convert-init.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/convert/elaborations.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/convert/elaborations.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/count-epmem.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/count-epmem.dm -------------------------------------------------------------------------------- /count-epmem/count-epmem/count-epmem_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/count-epmem_source.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/done.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/done.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/elaborations/_all.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/elaborations/_all.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/elaborations/cue.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/elaborations/cue.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/max.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/max.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/power.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /count-epmem/count-epmem/power/elaborations.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/power/elaborations.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/power/power-done.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/power/power-done.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/power/power-init.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/power/power-init.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/power/power-next.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/power/power-next.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/power/power_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/power/power_source.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/recording.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/recording.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/recording/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /count-epmem/count-epmem/storing.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/storing.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/switch.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/switch.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/testing.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-epmem/count-epmem/testing.soar -------------------------------------------------------------------------------- /count-epmem/count-epmem/testing/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /count-test-files/New Text Document.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/New Text Document.txt -------------------------------------------------------------------------------- /count-test-files/chunks.soarx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/chunks.soarx -------------------------------------------------------------------------------- /count-test-files/count-test.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test.soar -------------------------------------------------------------------------------- /count-test-files/count-test.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test.vsa -------------------------------------------------------------------------------- /count-test-files/count-test/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /count-test-files/count-test/Impasse__Operator_Tie/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /count-test-files/count-test/Impasse__State_No-Change.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /count-test-files/count-test/Impasse__State_No-Change/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /count-test-files/count-test/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/_firstload.soar -------------------------------------------------------------------------------- /count-test-files/count-test/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/_readme.soar -------------------------------------------------------------------------------- /count-test-files/count-test/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /count-test-files/count-test/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/comment.dm -------------------------------------------------------------------------------- /count-test-files/count-test/count-test.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/count-test.dm -------------------------------------------------------------------------------- /count-test-files/count-test/count-test1.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/count-test1.soar -------------------------------------------------------------------------------- /count-test-files/count-test/count-test2.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/count-test2.soar -------------------------------------------------------------------------------- /count-test-files/count-test/count-test3.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/count-test3.soar -------------------------------------------------------------------------------- /count-test-files/count-test/count-test4.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/count-test4.soar -------------------------------------------------------------------------------- /count-test-files/count-test/count-test4/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /count-test-files/count-test/count-test5.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/count-test5.soar -------------------------------------------------------------------------------- /count-test-files/count-test/count-test6.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/count-test6.soar -------------------------------------------------------------------------------- /count-test-files/count-test/count-test7.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/count-test7.soar -------------------------------------------------------------------------------- /count-test-files/count-test/count-test8.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/count-test8.soar -------------------------------------------------------------------------------- /count-test-files/count-test/count-test9.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/count-test9.soar -------------------------------------------------------------------------------- /count-test-files/count-test/count-test_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/count-test_source.soar -------------------------------------------------------------------------------- /count-test-files/count-test/elaborations/_all.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/elaborations/_all.soar -------------------------------------------------------------------------------- /count-test-files/count-test/elaborations/monitor.soar: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /count-test-files/count-test/next-test.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/next-test.soar -------------------------------------------------------------------------------- /count-test-files/count-test/test-complete.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count-test-files/count-test/test-complete.soar -------------------------------------------------------------------------------- /count/count.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count/count.soar -------------------------------------------------------------------------------- /count/fibonacci.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/count/fibonacci.soar -------------------------------------------------------------------------------- /default/selection-astar.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-astar.soar -------------------------------------------------------------------------------- /default/selection-astar.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-astar.vsa -------------------------------------------------------------------------------- /default/selection-astar/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-astar/Impasse__Operator_Tie/evaluate-operator/Impasse__State_No-Change.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-astar/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-astar/_firstload.soar -------------------------------------------------------------------------------- /default/selection-astar/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-astar/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-astar/comment.dm -------------------------------------------------------------------------------- /default/selection-astar/elaborations/_all.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-astar/elaborations/_all.soar -------------------------------------------------------------------------------- /default/selection-astar/elaborations/elaborations_source.soar: -------------------------------------------------------------------------------- 1 | source _all.soar 2 | -------------------------------------------------------------------------------- /default/selection-astar/selection-astar.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-astar/selection-astar.dm -------------------------------------------------------------------------------- /default/selection-iterative-deepening.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-iterative-deepening.soar -------------------------------------------------------------------------------- /default/selection-iterative-deepening.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-iterative-deepening.vsa -------------------------------------------------------------------------------- /default/selection-iterative-deepening/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-iterative-deepening/Impasse__Operator_Tie/evaluate-operator/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-iterative-deepening/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-iterative-deepening/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-iterative-deepening/comment.dm -------------------------------------------------------------------------------- /default/selection-iterative-deepening/elaborations/elaborations_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-optimal.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-optimal.soar -------------------------------------------------------------------------------- /default/selection-optimal/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-optimal/Impasse__Operator_Tie/evaluate-operator.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-optimal/Impasse__Operator_Tie/evaluate-operator/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-optimal/Impasse__Operator_Tie/evaluate-operator/Impasse__Operator_Tie/evaluate-operator.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-optimal/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-optimal/_firstload.soar -------------------------------------------------------------------------------- /default/selection-optimal/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-optimal/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-optimal/comment.dm -------------------------------------------------------------------------------- /default/selection-optimal/elaborations/elaborations_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection-optimal/selection-optimal.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection-optimal/selection-optimal.dm -------------------------------------------------------------------------------- /default/selection.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection.soar -------------------------------------------------------------------------------- /default/selection.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection.vsa -------------------------------------------------------------------------------- /default/selection/Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection/Operator_Tie/elaborations.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection/Operator_Tie/elaborations.soar -------------------------------------------------------------------------------- /default/selection/Operator_Tie/evaluate-operator/Operator_Constraint-Failure.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection/Operator_Tie/evaluate-operator/Operator_Constraint-Failure/Operator_Constraint-Failure_source.soar: -------------------------------------------------------------------------------- 1 | source elaborations.soar 2 | -------------------------------------------------------------------------------- /default/selection/Operator_Tie/evaluate-operator/Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection/Operator_Tie/evaluate-operator/Operator_Tie/Operator_Tie_source.soar: -------------------------------------------------------------------------------- 1 | source elaborations.soar 2 | -------------------------------------------------------------------------------- /default/selection/Operator_Tie/evaluate-operator/State_No-Change.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection/Operator_Tie/evaluate-operator/State_No-Change/State_No-Change.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection/Operator_Tie/evaluate-operator/State_No-Change/State_No-Change/State_No-Change_source.soar: -------------------------------------------------------------------------------- 1 | source elaborations.soar 2 | -------------------------------------------------------------------------------- /default/selection/Operator_Tie/evaluate-operator/State_No-Change/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/selection/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection/_firstload.soar -------------------------------------------------------------------------------- /default/selection/all/all_source.soar: -------------------------------------------------------------------------------- 1 | source declarations.soar 2 | -------------------------------------------------------------------------------- /default/selection/all/declarations.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection/all/declarations.soar -------------------------------------------------------------------------------- /default/selection/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection/comment.dm -------------------------------------------------------------------------------- /default/selection/elaborations/elaborations_source.soar: -------------------------------------------------------------------------------- 1 | source top-state.soar 2 | -------------------------------------------------------------------------------- /default/selection/elaborations/top-state.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection/elaborations/top-state.soar -------------------------------------------------------------------------------- /default/selection/selection.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection/selection.dm -------------------------------------------------------------------------------- /default/selection/selection_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/selection/selection_source.soar -------------------------------------------------------------------------------- /default/simple.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/default/simple.soar -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/eight-puzzle/eight-puzzle.soar -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/eight-puzzle/eight-puzzle.tcl -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/eight-puzzle/eight-puzzle.vsa -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle/Impasse__Operator_Tie/evaluate-operator.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle/Impasse__Operator_Tie/evaluate-operator/move-tile.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/eight-puzzle/eight-puzzle/_firstload.soar -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/eight-puzzle/eight-puzzle/_readme.soar -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/eight-puzzle/eight-puzzle/comment.dm -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle/eight-puzzle.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/eight-puzzle/eight-puzzle/eight-puzzle.dm -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle/eight-puzzle_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/eight-puzzle/eight-puzzle/eight-puzzle_source.soar -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle/initialize.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/eight-puzzle/eight-puzzle/initialize.soar -------------------------------------------------------------------------------- /eight-puzzle/eight-puzzle/move-tile.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/eight-puzzle/eight-puzzle/move-tile.soar -------------------------------------------------------------------------------- /eight-puzzle/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/eight-puzzle/readme.txt -------------------------------------------------------------------------------- /epmem-tutorial/epmem-tutorial.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/epmem-tutorial/epmem-tutorial.soar -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/fifteen-puzzle/fifteen-puzzle.soar -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/fifteen-puzzle/fifteen-puzzle.vsa -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle/Impasse__Operator_Tie/evaluate-operator.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle/Impasse__Operator_Tie/evaluate-operator/move-tile.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/fifteen-puzzle/fifteen-puzzle/_firstload.soar -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/fifteen-puzzle/fifteen-puzzle/_readme.soar -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/fifteen-puzzle/fifteen-puzzle/comment.dm -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle/eight-puzzle.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/fifteen-puzzle/fifteen-puzzle/eight-puzzle.dm -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle/fifteen-puzzle.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/fifteen-puzzle/fifteen-puzzle/fifteen-puzzle.dm -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle/initialize.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/fifteen-puzzle/fifteen-puzzle/initialize.soar -------------------------------------------------------------------------------- /fifteen-puzzle/fifteen-puzzle/move-tile.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/fifteen-puzzle/fifteen-puzzle/move-tile.soar -------------------------------------------------------------------------------- /graph-search-smem/graph-search-smem.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search-smem/graph-search-smem.soar -------------------------------------------------------------------------------- /graph-search-smem/graph-search-smem.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search-smem/graph-search-smem.vsa -------------------------------------------------------------------------------- /graph-search-smem/graph-search-smem/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search-smem/graph-search-smem/_readme.soar -------------------------------------------------------------------------------- /graph-search-smem/graph-search-smem/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graph-search-smem/graph-search-smem/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search-smem/graph-search-smem/comment.dm -------------------------------------------------------------------------------- /graph-search/graph-search.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search/graph-search.soar -------------------------------------------------------------------------------- /graph-search/graph-search.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search/graph-search.vsa -------------------------------------------------------------------------------- /graph-search/graph-search/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search/graph-search/_firstload.soar -------------------------------------------------------------------------------- /graph-search/graph-search/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search/graph-search/_readme.soar -------------------------------------------------------------------------------- /graph-search/graph-search/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graph-search/graph-search/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search/graph-search/comment.dm -------------------------------------------------------------------------------- /graph-search/graph-search/elaborations/_all.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search/graph-search/elaborations/_all.soar -------------------------------------------------------------------------------- /graph-search/graph-search/elaborations/halt.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search/graph-search/elaborations/halt.soar -------------------------------------------------------------------------------- /graph-search/graph-search/go-to-location.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search/graph-search/go-to-location.soar -------------------------------------------------------------------------------- /graph-search/graph-search/graph-search.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search/graph-search/graph-search.dm -------------------------------------------------------------------------------- /graph-search/graph-search/graph-search_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search/graph-search/graph-search_source.soar -------------------------------------------------------------------------------- /graph-search/graph-search/monitor-waypoint.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/graph-search/graph-search/monitor-waypoint.soar -------------------------------------------------------------------------------- /hello-world-operator/hello-world-operator.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/hello-world-operator/hello-world-operator.soar -------------------------------------------------------------------------------- /hello-world-rule/hello-world-rule.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/hello-world-rule/hello-world-rule.soar -------------------------------------------------------------------------------- /kb/kb.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb.soar -------------------------------------------------------------------------------- /kb/kb.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb.vsa -------------------------------------------------------------------------------- /kb/kb/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/_firstload.soar -------------------------------------------------------------------------------- /kb/kb/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kb/kb/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/comment.dm -------------------------------------------------------------------------------- /kb/kb/done.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/done.soar -------------------------------------------------------------------------------- /kb/kb/elaborations/_all.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/elaborations/_all.soar -------------------------------------------------------------------------------- /kb/kb/elaborations/elaborations_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/elaborations/elaborations_source.soar -------------------------------------------------------------------------------- /kb/kb/elaborations/top-state.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/elaborations/top-state.soar -------------------------------------------------------------------------------- /kb/kb/initialize-kb.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/initialize-kb.soar -------------------------------------------------------------------------------- /kb/kb/kb.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/kb.dm -------------------------------------------------------------------------------- /kb/kb/kb_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/kb_source.soar -------------------------------------------------------------------------------- /kb/kb/load.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/load.soar -------------------------------------------------------------------------------- /kb/kb/test-cue.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/test-cue.soar -------------------------------------------------------------------------------- /kb/kb/test-init.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/test-init.soar -------------------------------------------------------------------------------- /kb/kb/test-next.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/test-next.soar -------------------------------------------------------------------------------- /kb/kb/test-notify.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/test-notify.soar -------------------------------------------------------------------------------- /kb/kb/test-result.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/test-result.soar -------------------------------------------------------------------------------- /kb/kb/transition.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/kb/kb/transition.soar -------------------------------------------------------------------------------- /left-right/left-right.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right.soar -------------------------------------------------------------------------------- /left-right/left-right.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right.vsa -------------------------------------------------------------------------------- /left-right/left-right/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right/_firstload.soar -------------------------------------------------------------------------------- /left-right/left-right/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /left-right/left-right/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right/comment.dm -------------------------------------------------------------------------------- /left-right/left-right/elaborations/_all.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right/elaborations/_all.soar -------------------------------------------------------------------------------- /left-right/left-right/elaborations/done.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right/elaborations/done.soar -------------------------------------------------------------------------------- /left-right/left-right/elaborations/reward.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right/elaborations/reward.soar -------------------------------------------------------------------------------- /left-right/left-right/elaborations/top-state.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right/elaborations/top-state.soar -------------------------------------------------------------------------------- /left-right/left-right/initialize-left-right.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right/initialize-left-right.soar -------------------------------------------------------------------------------- /left-right/left-right/left-right.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right/left-right.dm -------------------------------------------------------------------------------- /left-right/left-right/left-right_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right/left-right_source.soar -------------------------------------------------------------------------------- /left-right/left-right/move.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/left-right/left-right/move.soar -------------------------------------------------------------------------------- /mac-planning/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/comment.dm -------------------------------------------------------------------------------- /mac-planning/mac-planning.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning.soar -------------------------------------------------------------------------------- /mac-planning/mac-planning.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning.vsa -------------------------------------------------------------------------------- /mac-planning/mac-planning/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mac-planning/mac-planning/Impasse__Operator_Tie/evaluate-operator.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mac-planning/mac-planning/Impasse__Operator_Tie/evaluate-operator/evaluate-operator_source.soar: -------------------------------------------------------------------------------- 1 | source elaborations.soar 2 | -------------------------------------------------------------------------------- /mac-planning/mac-planning/Impasse__Operator_Tie/evaluate-operator/move-boat.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mac-planning/mac-planning/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning/_firstload.soar -------------------------------------------------------------------------------- /mac-planning/mac-planning/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning/_readme.soar -------------------------------------------------------------------------------- /mac-planning/mac-planning/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mac-planning/mac-planning/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning/comment.dm -------------------------------------------------------------------------------- /mac-planning/mac-planning/initialize-mac.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning/initialize-mac.soar -------------------------------------------------------------------------------- /mac-planning/mac-planning/initialize.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning/initialize.soar -------------------------------------------------------------------------------- /mac-planning/mac-planning/mac-planning.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning/mac-planning.dm -------------------------------------------------------------------------------- /mac-planning/mac-planning/mac-planning_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning/mac-planning_source.soar -------------------------------------------------------------------------------- /mac-planning/mac-planning/mac.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning/mac.dm -------------------------------------------------------------------------------- /mac-planning/mac-planning/mac_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning/mac_source.soar -------------------------------------------------------------------------------- /mac-planning/mac-planning/move-boat.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac-planning/mac-planning/move-boat.soar -------------------------------------------------------------------------------- /mac/mac.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac.soar -------------------------------------------------------------------------------- /mac/mac.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac.vsa -------------------------------------------------------------------------------- /mac/mac/_firstload.soar: -------------------------------------------------------------------------------- 1 | learn --off -------------------------------------------------------------------------------- /mac/mac/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac/_readme.soar -------------------------------------------------------------------------------- /mac/mac/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mac/mac/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac/comment.dm -------------------------------------------------------------------------------- /mac/mac/elaborations/elaborations_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac/elaborations/elaborations_source.soar -------------------------------------------------------------------------------- /mac/mac/elaborations/goal-test.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac/elaborations/goal-test.soar -------------------------------------------------------------------------------- /mac/mac/elaborations/monitor.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac/elaborations/monitor.soar -------------------------------------------------------------------------------- /mac/mac/elaborations/search-control.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac/elaborations/search-control.soar -------------------------------------------------------------------------------- /mac/mac/elaborations/top-state.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mac/mac/initialize-mac.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac/initialize-mac.soar -------------------------------------------------------------------------------- /mac/mac/initialize.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac/initialize.soar -------------------------------------------------------------------------------- /mac/mac/mac.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac/mac.dm -------------------------------------------------------------------------------- /mac/mac/mac_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac/mac_source.soar -------------------------------------------------------------------------------- /mac/mac/move-boat.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/mac/mac/move-boat.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit.vsa -------------------------------------------------------------------------------- /rl-unit/rl-unit/README.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/README.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/_firstload.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rl-unit/rl-unit/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/comment.dm -------------------------------------------------------------------------------- /rl-unit/rl-unit/done.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/done.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/elaborations/_all.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/elaborations/_all.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/elaborations/reward.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/elaborations/reward.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/elaborations/rl.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/elaborations/rl.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/elaborations/top-state.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/elaborations/top-state.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/four.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/four.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/four/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rl-unit/rl-unit/four/four-four.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/four/four-four.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/four/four-one.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/four/four-one.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/four/four-three.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/four/four-three.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/four/four-three/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rl-unit/rl-unit/four/four-two.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/four/four-two.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/four/four_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/four/four_source.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/initialize-rl-unit.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/initialize-rl-unit.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/one.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/one.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/one/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rl-unit/rl-unit/one/one-one.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/one/one-one.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/one/one-two.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/one/one-two.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/one/one_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/one/one_source.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/rl-unit.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/rl-unit.dm -------------------------------------------------------------------------------- /rl-unit/rl-unit/rl-unit_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/rl-unit_source.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/three.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/three.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/three/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rl-unit/rl-unit/three/three-one.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/three/three-one.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/three/three-one/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rl-unit/rl-unit/three/three-one/three-one-one.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/three/three-one/three-one-one.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/three/three-two.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/three/three-two.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/three/three_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/three/three_source.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/two.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/two.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/two/elaborations.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rl-unit/rl-unit/two/two-one.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/two/two-one.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/two/two-three.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/two/two-three.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/two/two-two.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/two/two-two.soar -------------------------------------------------------------------------------- /rl-unit/rl-unit/two/two_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/rl-unit/rl-unit/two/two_source.soar -------------------------------------------------------------------------------- /smem-tutorial/smem-tutorial.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/smem-tutorial/smem-tutorial.soar -------------------------------------------------------------------------------- /towers-of-hanoi-recursive/monitor.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/towers-of-hanoi-recursive/monitor.soar -------------------------------------------------------------------------------- /towers-of-hanoi-recursive/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/towers-of-hanoi-recursive/readme.txt -------------------------------------------------------------------------------- /towers-of-hanoi-recursive/towers-of-hanoi-recursive/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /towers-of-hanoi-recursive/towers-of-hanoi-recursive/move-disk/move-disk.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /towers-of-hanoi-simple/monitor.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/towers-of-hanoi-simple/monitor.soar -------------------------------------------------------------------------------- /towers-of-hanoi-simple/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/towers-of-hanoi-simple/readme.txt -------------------------------------------------------------------------------- /towers-of-hanoi-simple/towers-of-hanoi.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/towers-of-hanoi-simple/towers-of-hanoi.soar -------------------------------------------------------------------------------- /towers-of-hanoi-simple/towers-of-hanoi.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/towers-of-hanoi-simple/towers-of-hanoi.vsa -------------------------------------------------------------------------------- /towers-of-hanoi-simple/towers-of-hanoi/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /towers-of-hanoi-simple/towers-of-hanoi/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/towers-of-hanoi-simple/towers-of-hanoi/comment.dm -------------------------------------------------------------------------------- /water-jug-hierarchy/water-jug-hierarchy.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-hierarchy/water-jug-hierarchy.soar -------------------------------------------------------------------------------- /water-jug-hierarchy/water-jug-hierarchy.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-hierarchy/water-jug-hierarchy.vsa -------------------------------------------------------------------------------- /water-jug-hierarchy/water-jug-hierarchy/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /water-jug-look-ahead/images/00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/00.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/01.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/02.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/03.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/04.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/05.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/10.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/11.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/12.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/13.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/14.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/15.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/20.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/21.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/22.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/23.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/24.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/25.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/30.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/31.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/32.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/33.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/34.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/35.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-00.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-01.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-02.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-03.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-04.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-05.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-10.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-11.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-12.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-13.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-14.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-15.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-20.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-21.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-22.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-23.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-24.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-25.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-30.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-31.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-32.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-33.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-34.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/3pour5-35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/3pour5-35.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-01.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-02.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-03.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-04.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-05.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-10.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-11.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-12.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-13.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-14.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-15.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-20.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-21.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-22.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-23.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-24.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-25.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-30.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-31.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-32.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-33.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/5pour3-34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/5pour3-34.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-00.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-01.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-02.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-03.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-04.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-05.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-10.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-11.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-12.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-13.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-14.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-15.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-20.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-21.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-22.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-23.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-24.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-25.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-30.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-31.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-32.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-33.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-34.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump3-35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump3-35.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-00.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-01.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-02.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-03.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-04.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-05.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-10.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-11.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-12.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-13.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-14.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-15.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-20.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-21.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-22.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-23.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-24.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-25.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-30.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-31.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-32.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-33.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-34.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/dump5-35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/dump5-35.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/fill3-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/fill3-0.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/fill3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/fill3-1.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/fill3-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/fill3-2.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/fill3-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/fill3-3.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/fill3-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/fill3-4.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/fill3-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/fill3-5.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/fill5-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/fill5-0.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/fill5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/fill5-1.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/fill5-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/fill5-2.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/images/fill5-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/images/fill5-3.gif -------------------------------------------------------------------------------- /water-jug-look-ahead/water-jug-look-ahead.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/water-jug-look-ahead.soar -------------------------------------------------------------------------------- /water-jug-look-ahead/water-jug-look-ahead.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/water-jug-look-ahead.tcl -------------------------------------------------------------------------------- /water-jug-look-ahead/water-jug-look-ahead.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-look-ahead/water-jug-look-ahead.vsa -------------------------------------------------------------------------------- /water-jug-look-ahead/water-jug-look-ahead/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /water-jug-look-ahead/water-jug-look-ahead/all/all_source.soar: -------------------------------------------------------------------------------- 1 | source failure.soar 2 | -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl.soar -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl.vsa -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl/_firstload.soar -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl/_readme.soar -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl/comment.dm -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl/empty.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl/empty.soar -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl/fill.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl/fill.soar -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl/pour.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl/pour.soar -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl/record.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl/record.soar -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl/water-jug-rl.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl/water-jug-rl.dm -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl/water-jug.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl/water-jug.dm -------------------------------------------------------------------------------- /water-jug-rl/water-jug-rl/water-jug_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-rl/water-jug-rl/water-jug_source.soar -------------------------------------------------------------------------------- /water-jug-simple/images/00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/00.gif -------------------------------------------------------------------------------- /water-jug-simple/images/01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/01.gif -------------------------------------------------------------------------------- /water-jug-simple/images/02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/02.gif -------------------------------------------------------------------------------- /water-jug-simple/images/03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/03.gif -------------------------------------------------------------------------------- /water-jug-simple/images/04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/04.gif -------------------------------------------------------------------------------- /water-jug-simple/images/05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/05.gif -------------------------------------------------------------------------------- /water-jug-simple/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/10.gif -------------------------------------------------------------------------------- /water-jug-simple/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/11.gif -------------------------------------------------------------------------------- /water-jug-simple/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/12.gif -------------------------------------------------------------------------------- /water-jug-simple/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/13.gif -------------------------------------------------------------------------------- /water-jug-simple/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/14.gif -------------------------------------------------------------------------------- /water-jug-simple/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/15.gif -------------------------------------------------------------------------------- /water-jug-simple/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/20.gif -------------------------------------------------------------------------------- /water-jug-simple/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/21.gif -------------------------------------------------------------------------------- /water-jug-simple/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/22.gif -------------------------------------------------------------------------------- /water-jug-simple/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/23.gif -------------------------------------------------------------------------------- /water-jug-simple/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/24.gif -------------------------------------------------------------------------------- /water-jug-simple/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/25.gif -------------------------------------------------------------------------------- /water-jug-simple/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/30.gif -------------------------------------------------------------------------------- /water-jug-simple/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/31.gif -------------------------------------------------------------------------------- /water-jug-simple/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/32.gif -------------------------------------------------------------------------------- /water-jug-simple/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/33.gif -------------------------------------------------------------------------------- /water-jug-simple/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/34.gif -------------------------------------------------------------------------------- /water-jug-simple/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/35.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-00.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-01.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-02.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-03.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-04.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-05.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-10.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-11.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-12.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-13.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-14.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-15.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-20.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-21.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-22.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-23.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-24.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-25.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-30.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-31.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-32.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-33.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-34.gif -------------------------------------------------------------------------------- /water-jug-simple/images/3pour5-35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/3pour5-35.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-01.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-02.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-03.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-04.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-05.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-10.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-11.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-12.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-13.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-14.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-15.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-20.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-21.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-22.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-23.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-24.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-25.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-30.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-31.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-32.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-33.gif -------------------------------------------------------------------------------- /water-jug-simple/images/5pour3-34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/5pour3-34.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-00.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-01.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-02.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-03.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-04.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-05.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-10.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-11.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-12.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-13.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-14.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-15.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-20.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-21.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-22.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-23.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-24.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-25.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-30.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-31.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-32.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-33.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-34.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump3-35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump3-35.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-00.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-01.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-02.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-03.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-04.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-05.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-10.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-11.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-12.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-13.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-14.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-15.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-20.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-21.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-22.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-23.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-24.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-25.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-30.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-31.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-32.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-33.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-34.gif -------------------------------------------------------------------------------- /water-jug-simple/images/dump5-35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/dump5-35.gif -------------------------------------------------------------------------------- /water-jug-simple/images/fill3-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/fill3-0.gif -------------------------------------------------------------------------------- /water-jug-simple/images/fill3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/fill3-1.gif -------------------------------------------------------------------------------- /water-jug-simple/images/fill3-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/fill3-2.gif -------------------------------------------------------------------------------- /water-jug-simple/images/fill3-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/fill3-3.gif -------------------------------------------------------------------------------- /water-jug-simple/images/fill3-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/fill3-4.gif -------------------------------------------------------------------------------- /water-jug-simple/images/fill3-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/fill3-5.gif -------------------------------------------------------------------------------- /water-jug-simple/images/fill5-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/fill5-0.gif -------------------------------------------------------------------------------- /water-jug-simple/images/fill5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/fill5-1.gif -------------------------------------------------------------------------------- /water-jug-simple/images/fill5-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/fill5-2.gif -------------------------------------------------------------------------------- /water-jug-simple/images/fill5-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/images/fill5-3.gif -------------------------------------------------------------------------------- /water-jug-simple/water-jug.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug.soar -------------------------------------------------------------------------------- /water-jug-simple/water-jug.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug.tcl -------------------------------------------------------------------------------- /water-jug-simple/water-jug.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug.vsa -------------------------------------------------------------------------------- /water-jug-simple/water-jug/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug/_firstload.soar -------------------------------------------------------------------------------- /water-jug-simple/water-jug/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug/_readme.soar -------------------------------------------------------------------------------- /water-jug-simple/water-jug/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /water-jug-simple/water-jug/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug/comment.dm -------------------------------------------------------------------------------- /water-jug-simple/water-jug/empty.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug/empty.soar -------------------------------------------------------------------------------- /water-jug-simple/water-jug/fill.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug/fill.soar -------------------------------------------------------------------------------- /water-jug-simple/water-jug/pour.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug/pour.soar -------------------------------------------------------------------------------- /water-jug-simple/water-jug/record.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug/record.soar -------------------------------------------------------------------------------- /water-jug-simple/water-jug/water-jug.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug/water-jug.dm -------------------------------------------------------------------------------- /water-jug-simple/water-jug/water-jug_source.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-simple/water-jug/water-jug_source.soar -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-tie/water-jug-tie.soar -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie.vsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-tie/water-jug-tie.vsa -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie/Impasse__Operator_Tie.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie/_firstload.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-tie/water-jug-tie/_firstload.soar -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie/_readme.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-tie/water-jug-tie/_readme.soar -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie/all/all_source.soar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie/comment.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-tie/water-jug-tie/comment.dm -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie/empty.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-tie/water-jug-tie/empty.soar -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie/fill.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-tie/water-jug-tie/fill.soar -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie/pour.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-tie/water-jug-tie/pour.soar -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie/record.soar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-tie/water-jug-tie/record.soar -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie/water-jug-tie.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-tie/water-jug-tie/water-jug-tie.dm -------------------------------------------------------------------------------- /water-jug-tie/water-jug-tie/water-jug.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoarGroup/Agents/HEAD/water-jug-tie/water-jug-tie/water-jug.dm --------------------------------------------------------------------------------