Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions content/courses/intro-to-spark/chapters/01_Overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ verification of the source code performed without compiling or executing
it. Verification uses tools that perform static analysis. These can take
various forms. They include tools that check types and enforce visibility
rules, such as the compiler, in addition to those that perform more complex
reasoning, such as abstract interpretation, as done by a tool like
`CodePeer <https://www.adacore.com/codepeer>`_ from AdaCore. The tools that
come with SPARK perform two different forms of static analysis:
reasoning, such as abstract interpretation, as done by a tool like the
`GNAT Static Analysis Suite <https://www.adacore.com/static-analysis-suite>`_
from AdaCore. The tools that come with SPARK perform two different forms
of static analysis:

- `flow analysis` is the fastest form of analysis. It checks
initializations of variables and looks at data dependencies between
Expand Down
Loading