spark-2014 Questions
2
Solved
I'm translating an exercise I made in Dafny into SPARK, where one verifies a tail recursive function against a recursive one. The Dafny source (censored, because it might still be used for classes)...
Conundrum asked 11/9, 2021 at 23:12
3
I have the following program:
procedure Main with SPARK_Mode is
F : array (0 .. 10) of Integer := (0, 1, others => 0);
begin
for I in 2 .. F'Last loop
F (I) := F (I - 1) + F (I - 2);
end lo...
Alibi asked 10/11, 2017 at 17:8
3
New to Spark, and new to Ada, so this question may be overly broad. However, it's asked in good faith, as part of an attempt to understand Spark. Besides direct answers to the questions below, I we...
Roadster asked 12/12, 2018 at 23:2
1
© 2022 - 2024 — McMap. All rights reserved.