Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
David Swasey
coq-stdpp
Commits
70ee1472
Commit
70ee1472
authored
Sep 12, 2014
by
Robbert Krebbers
Browse files
Use the ascii decider from the stdlib which is extracted correctly.
parent
8da8fbc7
Changes
1
Hide whitespace changes
Inline
Side-by-side
theories/stringmap.v
View file @
70ee1472
...
@@ -7,8 +7,7 @@ and guarantees logarithmic-time operations. *)
...
@@ -7,8 +7,7 @@ and guarantees logarithmic-time operations. *)
Require
Export
fin_maps
.
Require
Export
fin_maps
.
Require
Import
Ascii
String
list
pmap
mapset
.
Require
Import
Ascii
String
list
pmap
mapset
.
Instance
assci_eq_dec
(
a1
a2
:
ascii
)
:
Decision
(
a1
=
a2
).
Instance
assci_eq_dec
:
∀
a1
a2
,
Decision
(
a1
=
a2
)
:
=
ascii_dec
.
Proof
.
solve_decision
.
Defined
.
Instance
string_eq_dec
(
s1
s2
:
string
)
:
Decision
(
s1
=
s2
).
Instance
string_eq_dec
(
s1
s2
:
string
)
:
Decision
(
s1
=
s2
).
Proof
.
solve_decision
.
Defined
.
Proof
.
solve_decision
.
Defined
.
...
...
Write
Preview
Supports
Markdown
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