I have been trying to learn the basics of using SPARK and I have got my head round using the pre and post conditions, but I am unsure whether they take the place of validation? for example a function for a plane that will not switch into takeoff mode unless all doors are closed and locked. Would I need to add code to the procedure body to stop this behaviour or are the pre and post conditions enough? It's unclear to me because none of my course tutorials actually do so, but when I test the procedures, I am not restricted from violating the conditions.
Do pre and post conditions take the place of in function validation?
627 Views Asked by HubertBlu At
3
There are 3 best solutions below
1

In many cases one can use preconditions and post conditions in leu of in-subprogram validation. On the other hand, sometimes the subprogram must monitor an event or condition repeatedly and then respond properly to the event or condition. In those cases it is often best to perform that monitoring within a subprogram.
The first: if you use GNAT compiler, you have to add flag
-gnata
to compiler flags or use configuration file for GNAT withpragma Assertion_Policy(Check);
to enable check for Pre- and Post-conditions. Without one of these options, all checks are ignored. This is why you are allowed to violate them.Preconditions take place right before the selected subprogram is executed. For example, the function declared as:
This precondition will be checked before the function will be executed. For example:
Postconditions are checked on subprograms after their execution. Another example:
And usage: