Skip to content

Commit

Permalink
normalize minsize and maxsize before using them
Browse files Browse the repository at this point in the history
  • Loading branch information
fred-wang committed May 22, 2020
1 parent 46e30f1 commit 9075ff0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.html
Expand Up @@ -2156,7 +2156,11 @@ <h5>Algorithm for stretching operators along the block axis</h5>
to <code>T</code> =
<code>T<sub>ascent</sub></code> +
<code>T<sub>descent</sub></code>.
If 0 ≤ <code>minsize</code><code>maxsize</code> then:
If <code>minsize</code> &lt; 0 then set <code>minsize</code>
to 0.
If <code>maxsize</code> &lt; <code>minsize</code> then
then set <code>maxsize</code> to <code>minsize</code>.
Then 0 ≤ <code>minsize</code><code>maxsize</code>:
<ul>
<li>
If <code>T</code> = 0 then set
Expand Down

0 comments on commit 9075ff0

Please sign in to comment.