mirror of
https://github.com/github/codeql.git
synced 2026-01-11 21:50:28 +01:00
10 lines
304 B
Plaintext
10 lines
304 B
Plaintext
/**
|
|
* Provides sign analysis to determine whether expression are always positive
|
|
* or negative.
|
|
*
|
|
* The analysis is implemented as an abstract interpretation over the
|
|
* three-valued domain `{negative, zero, positive}`.
|
|
*/
|
|
|
|
import semmle.code.java.dataflow.internal.rangeanalysis.SignAnalysisCommon
|