mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
583 B
HTML
15 lines
583 B
HTML
<html>
|
|
<body>
|
|
Reports boolean expressions with too many terms. Such expressions may be confusing and bug-prone.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
cond(x1) && cond(x2) ^ cond(x3) && cond(x4);
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>Configure the inspection:</p>
|
|
<ul>
|
|
<li>Use the <b>Maximum number of terms</b> field to specify the maximum number of terms allowed in a boolean expression.</li>
|
|
<li>Use the <b>Ignore pure conjunctions and disjunctions</b> option to ignore boolean expressions which use only a single boolean operator repeatedly.</li>
|
|
</ul>
|
|
</body>
|
|
</html> |