File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ is plotted in the Figure below.
53
53
54
54
</center>
55
55
56
- <pre><code class="c numbered">01: // CONSTANTS:
56
+ <pre><code class="c numbered">01: // CONSTANTS:
57
57
02: #define MAX_CLIMB_SUM_ERR 10
58
58
03: #define MAX_CLIMB 1
59
59
04:
@@ -187,11 +187,10 @@ T3: (desired_climb=0.000000f, estimator_z_dot=1.000000f)
187
187
188
188
<p class="justified">
189
189
The option <code>--unwind 6</code> unwinds the loop inside the main
190
- function body six times. In order to achieve the complete coverage on the instrumented goals,
191
- the loop must be unwound sufficient enough times.
192
- For example, the PID function <code>climb_pid_run</code> needs to be called at
193
- least six times for evaluating the condition
194
- <code>climb_sum_err>MAX_CLIMB_SUM_ERR</code> in line 48 to <em>true</em>.
190
+ function body six times. In order to achieve the complete coverage on all the instrumented goals
191
+ in the PID function <code>climb_pid_run</code>, the loop must be unwound sufficient enough times.
192
+ For example, <code>climb_pid_run</code> needs to be called at least six times for evaluating the
193
+ condition <code>climb_sum_err>MAX_CLIMB_SUM_ERR</code> in line 48 to <em>true</em>.
195
194
This corresponds to the test suite below.
196
195
<pre><code>(desired_climb=-1.000000f, estimator_z_dot=1.000000f);
197
196
(desired_climb=-1.000000f, estimator_z_dot=0.000000f);
You can’t perform that action at this time.
0 commit comments