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
fbc3ed2b
Commit
fbc3ed2b
authored
Dec 01, 2010
by
François Bobot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bench : array
parent
9a615c12
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
.gitignore
.gitignore
+2
-0
bench/valid/array.why
bench/valid/array.why
+14
-0
No files found.
.gitignore
View file @
fbc3ed2b
...
@@ -8,6 +8,8 @@ why.conf
...
@@ -8,6 +8,8 @@ why.conf
*.cmx
*.cmx
*.cmo
*.cmo
*.cmi
*.cmi
*.cmxs
\#*\#
# /
# /
/config.status
/config.status
...
...
bench/valid/array.why
0 → 100644
View file @
fbc3ed2b
theory Test_simplify_array
use import array.Array
goal G1 : forall x y:int. forall m: t int int.
get (set m y x) y = x
goal G2 : forall x y y' z t:int. forall m: t int int.
z <> x ->
get m z = y ->
get (set m x t) z = y
goal G3 : forall y t:int. forall m: t int int.
get m 1 = y ->
get (set m 2 t) 1 = y
goal G4 : forall x y:int. forall m: t int int.
get (set (set m 2 y) 1 x) 2 = y
end
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