@@ -59,15 +59,16 @@ print [--gds --stack]
59
59
60
60
` print --gds `
61
61
62
- The Goal Dependency Set (GDS) is described in a subsection of the `The Soar
63
- Architecture` chapter of the manual. This command is a debugging command for
64
- examining the GDS for each goal in the stack. First it steps through all the
65
- working memory elements in the rete, looking for any that are included in _ any_
66
- goal dependency set, and prints each one. Then it also lists each goal in the
67
- stack and prints the wmes in the goal dependency set for that particular goal.
68
- This command is useful when trying to determine why subgoals are disappearing
69
- unexpectedly: often something has changed in the goal dependency set, causing a
70
- subgoal to be regenerated prior to producing a result.
62
+ The Goal Dependency Set (GDS) is described in a subsection of the
63
+ [ The Soar Architecture] ( ./../../soar_manual/02_TheSoarArchitecture.md#removal-of-substates-the-goal-dependency-set )
64
+ chapter of the manual. This command is a debugging command for examining the GDS
65
+ for each goal in the stack. First it steps through all the working memory
66
+ elements in the rete, looking for any that are included in _ any_ goal dependency
67
+ set, and prints each one. Then it also lists each goal in the stack and prints
68
+ the wmes in the goal dependency set for that particular goal. This command is
69
+ useful when trying to determine why subgoals are disappearing unexpectedly:
70
+ often something has changed in the goal dependency set, causing a subgoal to be
71
+ regenerated prior to producing a result.
71
72
72
73
` print --gds ` is horribly inefficient and should not generally be used except
73
74
when something is going wrong and you need to examine the Goal Dependency Set.
@@ -139,12 +140,14 @@ print s1 --depth 2 --tree
139
140
140
141
## Default Aliases
141
142
143
+ ``` bash
142
144
p print
143
145
pc print --chunks
144
146
ps print --stack
145
147
wmes print --depth 0 --internal
146
148
varprint print --varprint --depth 100
147
149
gds_print print --gds
150
+ ```
148
151
149
152
## See Also
150
153
0 commit comments