Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
why3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
125
Issues
125
List
Boards
Labels
Service Desk
Milestones
Merge Requests
15
Merge Requests
15
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Why3
why3
Commits
750ea0bd
Commit
750ea0bd
authored
May 22, 2017
by
MARCHE Claude
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
example fibonacci updated (no Coq proofs anymore!)
parent
077ae9c6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
40 deletions
+37
-40
examples/fibonacci.mlw
examples/fibonacci.mlw
+8
-1
examples/fibonacci/why3session.xml
examples/fibonacci/why3session.xml
+29
-39
examples/fibonacci/why3shapes.gz
examples/fibonacci/why3shapes.gz
+0
-0
No files found.
examples/fibonacci.mlw
View file @
750ea0bd
...
@@ -301,12 +301,19 @@ module FibonacciLogarithmic
...
@@ -301,12 +301,19 @@ module FibonacciLogarithmic
= if n = 0 then
= if n = 0 then
(1, 0)
(1, 0)
else begin
else begin
assert { 0 <= div n 2 };
let a, b = logfib (div n 2) in
let a, b = logfib (div n 2) in
let c = a + b in
let c = a + b in
if mod n 2 = 0 then
if mod n 2 = 0 then
(a*a + b*b, b*(a + c))
begin
assert { 2 * (div n 2) = (div n 2) + (div n 2) };
(a*a+ b*b, b*(a + c))
end
else
else
begin
assert { 2 * (div n 2) + 1 = (div n 2) + (div n 2) + 1 };
(b*(a + c), c*c + b*b)
(b*(a + c), c*c + b*b)
end
end
end
(* by induction, we easily prove that
(* by induction, we easily prove that
...
...
examples/fibonacci/why3session.xml
View file @
750ea0bd
...
@@ -4,13 +4,12 @@
...
@@ -4,13 +4,12 @@
<why3session
shape_version=
"4"
>
<why3session
shape_version=
"4"
>
<prover
id=
"1"
name=
"Alt-Ergo"
version=
"1.30"
timelimit=
"5"
steplimit=
"0"
memlimit=
"1000"
/>
<prover
id=
"1"
name=
"Alt-Ergo"
version=
"1.30"
timelimit=
"5"
steplimit=
"0"
memlimit=
"1000"
/>
<prover
id=
"2"
name=
"CVC3"
version=
"2.4.1"
timelimit=
"5"
steplimit=
"0"
memlimit=
"0"
/>
<prover
id=
"2"
name=
"CVC3"
version=
"2.4.1"
timelimit=
"5"
steplimit=
"0"
memlimit=
"0"
/>
<prover
id=
"3"
name=
"Yices"
version=
"1.0.38"
timelimit=
"5"
steplimit=
"0"
memlimit=
"1000"
/>
<prover
id=
"4"
name=
"Spass"
version=
"3.7"
timelimit=
"5"
steplimit=
"0"
memlimit=
"0"
/>
<prover
id=
"4"
name=
"Spass"
version=
"3.7"
timelimit=
"5"
steplimit=
"0"
memlimit=
"0"
/>
<prover
id=
"5"
name=
"Z3"
version=
"4.4.1"
timelimit=
"1"
steplimit=
"0"
memlimit=
"1000"
/>
<prover
id=
"5"
name=
"Z3"
version=
"4.4.1"
timelimit=
"1"
steplimit=
"0"
memlimit=
"1000"
/>
<prover
id=
"7"
name=
"Vampire"
version=
"0.6"
timelimit=
"5"
steplimit=
"0"
memlimit=
"0"
/>
<prover
id=
"7"
name=
"Vampire"
version=
"0.6"
timelimit=
"5"
steplimit=
"0"
memlimit=
"0"
/>
<prover
id=
"8"
name=
"Alt-Ergo"
version=
"0.99.1"
timelimit=
"5"
steplimit=
"0"
memlimit=
"0"
/>
<prover
id=
"8"
name=
"Alt-Ergo"
version=
"0.99.1"
timelimit=
"5"
steplimit=
"0"
memlimit=
"0"
/>
<prover
id=
"9"
name=
"CVC4"
version=
"1.4"
timelimit=
"1"
steplimit=
"0"
memlimit=
"1000"
/>
<prover
id=
"9"
name=
"CVC4"
version=
"1.4"
timelimit=
"1"
steplimit=
"0"
memlimit=
"1000"
/>
<prover
id=
"10"
name=
"Eprover"
version=
"1.8-001"
timelimit=
"5"
steplimit=
"0"
memlimit=
"
100
0"
/>
<prover
id=
"10"
name=
"Eprover"
version=
"1.8-001"
timelimit=
"5"
steplimit=
"0"
memlimit=
"0"
/>
<file
name=
"../fibonacci.mlw"
expanded=
"true"
>
<file
name=
"../fibonacci.mlw"
expanded=
"true"
>
<theory
name=
"FibonacciTest"
sum=
"9fccb254fa2218a4d5027f25371577ce"
>
<theory
name=
"FibonacciTest"
sum=
"9fccb254fa2218a4d5027f25371577ce"
>
<goal
name=
"isfib_2_1"
>
<goal
name=
"isfib_2_1"
>
...
@@ -24,7 +23,7 @@
...
@@ -24,7 +23,7 @@
<proof
prover=
"4"
><result
status=
"valid"
time=
"0.02"
/></proof>
<proof
prover=
"4"
><result
status=
"valid"
time=
"0.02"
/></proof>
<proof
prover=
"7"
><result
status=
"valid"
time=
"0.03"
/></proof>
<proof
prover=
"7"
><result
status=
"valid"
time=
"0.03"
/></proof>
<proof
prover=
"8"
><result
status=
"valid"
time=
"0.01"
steps=
"4"
/></proof>
<proof
prover=
"8"
><result
status=
"valid"
time=
"0.01"
steps=
"4"
/></proof>
<proof
prover=
"10"
memlimit=
"0"
><result
status=
"valid"
time=
"0.01"
/></proof>
<proof
prover=
"10"
><result
status=
"valid"
time=
"0.01"
/></proof>
</goal>
</goal>
</theory>
</theory>
<theory
name=
"FibonacciLinear"
sum=
"c9e19a22319be9ef88c46d978d0995ed"
>
<theory
name=
"FibonacciLinear"
sum=
"c9e19a22319be9ef88c46d978d0995ed"
>
...
@@ -161,7 +160,7 @@
...
@@ -161,7 +160,7 @@
</transf>
</transf>
</goal>
</goal>
</theory>
</theory>
<theory
name=
"Mat22"
sum=
"
645da7f6b0f098143596f41174a096ef
"
>
<theory
name=
"Mat22"
sum=
"
1f7a6624186307504d3ebbc4f00dd21a
"
>
<goal
name=
"Assoc"
>
<goal
name=
"Assoc"
>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.03"
steps=
"2"
/></proof>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.03"
steps=
"2"
/></proof>
</goal>
</goal>
...
@@ -171,51 +170,42 @@
...
@@ -171,51 +170,42 @@
<goal
name=
"Unit_def_r"
>
<goal
name=
"Unit_def_r"
>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.00"
steps=
"2"
/></proof>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.00"
steps=
"2"
/></proof>
</goal>
</goal>
<goal
name=
"Comm"
>
<proof
prover=
"1"
><result
status=
"unknown"
time=
"0.04"
/></proof>
<proof
prover=
"3"
><result
status=
"unknown"
time=
"0.00"
/></proof>
<proof
prover=
"5"
timelimit=
"10"
memlimit=
"4000"
><result
status=
"unknown"
time=
"0.02"
/></proof>
<proof
prover=
"9"
timelimit=
"10"
memlimit=
"4000"
><result
status=
"unknown"
time=
"0.00"
/></proof>
<proof
prover=
"10"
><result
status=
"timeout"
time=
"5.00"
/></proof>
</goal>
</theory>
</theory>
<theory
name=
"FibonacciLogarithmic"
sum=
"
57f0a3a334b4a756b3c8d2aa692546ed
"
expanded=
"true"
>
<theory
name=
"FibonacciLogarithmic"
sum=
"
72613a172df1afd4bbe89937f60d1bde
"
expanded=
"true"
>
<goal
name=
"VC m1110"
expl=
"VC for m1110"
>
<goal
name=
"VC m1110"
expl=
"VC for m1110"
>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.00"
steps=
"3"
/></proof>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.00"
steps=
"3"
/></proof>
</goal>
</goal>
<goal
name=
"VC logfib"
expl=
"VC for logfib"
expanded=
"true"
>
<goal
name=
"VC logfib"
expl=
"VC for logfib"
>
<proof
prover=
"1"
><result
status=
"timeout"
time=
"4.95"
/></proof>
<transf
name=
"split_goal_wp"
>
<proof
prover=
"5"
><result
status=
"timeout"
time=
"1.00"
/></proof>
<goal
name=
"VC logfib.1"
expl=
"1. assertion"
>
<proof
prover=
"9"
><result
status=
"unknown"
time=
"1.47"
/></proof>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.01"
steps=
"8"
/></proof>
<transf
name=
"split_goal_wp"
expanded=
"true"
>
<goal
name=
"VC logfib.1"
expl=
"1. precondition"
>
<proof
prover=
"5"
><result
status=
"valid"
time=
"0.00"
/></proof>
</goal>
</goal>
<goal
name=
"VC logfib.2"
expl=
"2.
variant decrease
"
>
<goal
name=
"VC logfib.2"
expl=
"2.
precondition
"
>
<proof
prover=
"
5"
><result
status=
"valid"
time=
"0.00
"
/></proof>
<proof
prover=
"
1"
><result
status=
"valid"
time=
"0.01"
steps=
"6
"
/></proof>
</goal>
</goal>
<goal
name=
"VC logfib.3"
expl=
"3.
precondition
"
>
<goal
name=
"VC logfib.3"
expl=
"3.
variant decrease
"
>
<proof
prover=
"
5"
><result
status=
"valid"
time=
"0.01
"
/></proof>
<proof
prover=
"
1"
><result
status=
"valid"
time=
"0.01"
steps=
"10
"
/></proof>
</goal>
</goal>
<goal
name=
"VC logfib.4"
expl=
"4. precondition"
>
<goal
name=
"VC logfib.4"
expl=
"4. precondition"
>
<proof
prover=
"
5"
><result
status=
"valid"
time=
"0.01
"
/></proof>
<proof
prover=
"
1"
><result
status=
"valid"
time=
"0.01"
steps=
"6
"
/></proof>
</goal>
</goal>
<goal
name=
"VC logfib.5"
expl=
"5. postcondition"
>
<goal
name=
"VC logfib.5"
expl=
"5. precondition"
>
<proof
prover=
"5"
><result
status=
"valid"
time=
"0.01"
/></proof>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.00"
steps=
"7"
/></proof>
</goal>
<goal
name=
"VC logfib.6"
expl=
"6. assertion"
>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.00"
steps=
"8"
/></proof>
</goal>
<goal
name=
"VC logfib.7"
expl=
"7. assertion"
>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.00"
steps=
"8"
/></proof>
</goal>
<goal
name=
"VC logfib.8"
expl=
"8. postcondition"
>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.01"
steps=
"8"
/></proof>
</goal>
<goal
name=
"VC logfib.9"
expl=
"9. postcondition"
>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.03"
steps=
"31"
/></proof>
</goal>
</goal>
<goal
name=
"VC logfib.6"
expl=
"6. postcondition"
>
<goal
name=
"VC logfib.10"
expl=
"10. postcondition"
>
<proof
prover=
"1"
><result
status=
"timeout"
time=
"5.00"
/></proof>
<proof
prover=
"1"
><result
status=
"valid"
time=
"0.17"
steps=
"63"
/></proof>
<proof
prover=
"3"
><result
status=
"unknown"
time=
"0.01"
/></proof>
<proof
prover=
"5"
timelimit=
"10"
memlimit=
"4000"
><result
status=
"timeout"
time=
"10.00"
/></proof>
<proof
prover=
"9"
timelimit=
"10"
memlimit=
"4000"
><result
status=
"timeout"
time=
"10.00"
/></proof>
<proof
prover=
"10"
><result
status=
"timeout"
time=
"5.00"
/></proof>
</goal>
<goal
name=
"VC logfib.7"
expl=
"7. postcondition"
expanded=
"true"
>
<proof
prover=
"1"
><result
status=
"timeout"
time=
"5.00"
/></proof>
<proof
prover=
"3"
><result
status=
"unknown"
time=
"0.01"
/></proof>
<proof
prover=
"5"
timelimit=
"10"
memlimit=
"4000"
><result
status=
"timeout"
time=
"10.00"
/></proof>
<proof
prover=
"9"
timelimit=
"10"
memlimit=
"4000"
><result
status=
"timeout"
time=
"10.00"
/></proof>
<proof
prover=
"10"
><result
status=
"timeout"
time=
"5.00"
/></proof>
</goal>
</goal>
</transf>
</transf>
</goal>
</goal>
...
...
examples/fibonacci/why3shapes.gz
View file @
750ea0bd
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment