Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
why3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Why3
why3
Commits
6de0c87e
Commit
6de0c87e
authored
10 years ago
by
Jean-Christophe Filliâtre
Browse files
Options
Downloads
Patches
Plain Diff
fixed ocaml-unsafe-int driver after commit
e6d53f4a
parent
f2732ba9
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/ocaml-unsafe-int.drv
+5
-5
5 additions, 5 deletions
drivers/ocaml-unsafe-int.drv
with
5 additions
and
5 deletions
drivers/ocaml-unsafe-int.drv
+
5
−
5
View file @
6de0c87e
...
...
@@ -135,10 +135,10 @@ module matrix.Matrix
syntax function columns "(Array.length %1.(0))"
syntax val rows "Array.length"
syntax val columns "(fun m -> Array.length m.(0))"
syntax val get "(fun m
(i,j)
-> m.(i).(j))"
syntax val set "(fun m
(i,j)
v -> m.(i).(j) <- v)"
syntax val defensive_get "(fun m
(i,j)
-> m.(i).(j))"
syntax val defensive_set "(fun m
(i,j)
v -> m.(i).(j) <- v)"
syntax val get "(fun m
i j
-> m.(i).(j))"
syntax val set "(fun m
i j
v -> m.(i).(j) <- v)"
syntax val defensive_get "(fun m
i j
-> m.(i).(j))"
syntax val defensive_set "(fun m
i j
v -> m.(i).(j) <- v)"
syntax val make "Array.make_matrix"
syntax val copy "(Array.map Array.copy)"
end
...
...
@@ -202,7 +202,7 @@ module mach.array.Array31
syntax val self_blit "Array.blit"
end
module mach.array.Array63
syntax type array
"(%1 array)"
syntax type array
63
"(%1 array)"
syntax val make "Array.make"
syntax val ([]) "Array.get"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment