&& priority is higher than ||, so in this code A || B || C && D actually compute A || B || (C && D), it is unable to distinguish the blind area correctly. Maybe you want to express (A || B || C) && D. : )
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
https://github.com/hku-mars/FAST_LIO/blob/d304b8953339aedbf67f75dca0f41025ead2a4d7/src/preprocess.cpp#L172-L175
&&
priority is higher than||
, so in this codeA || B || C && D
actually computeA || B || (C && D)
, it is unable to distinguish the blind area correctly. Maybe you want to express(A || B || C) && D
. : )