Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jsexplain
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Verified Software
jsexplain
Commits
37cb1fea
Commit
37cb1fea
authored
9 years ago
by
Alan Schmitt
Committed by
Thomas Wood
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
heap.ml fix
parent
8ae5b902
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
generator/tests/jsref/Heap.ml
+2
-2
2 additions, 2 deletions
generator/tests/jsref/Heap.ml
with
2 additions
and
2 deletions
generator/tests/jsref/Heap.ml
+
2
−
2
View file @
37cb1fea
...
...
@@ -41,13 +41,13 @@ let rem h1 l k =
(** val read_option :
'a1 coq_Comparable -> ('a1, 'a2) heap -> 'a1 -> 'a2 option **)
let
read_option
h
=
let
read_option
h
l
k
=
let
rec
read_option0
l
k
=
match
l
with
|
[]
->
None
|
p
::
l'
->
let
(
x
,
v
)
=
p
in
if
h
x
k
then
Some
v
else
read_option0
l'
k
in
read_option0
in
read_option0
l
k
(** val mem_assoc :
'a2 coq_Comparable -> 'a2 -> ('a2 * 'a1) list -> bool **)
...
...
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