Skip to content
Snippets Groups Projects
Commit 70ee1472 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Use the ascii decider from the stdlib which is extracted correctly.

parent 8da8fbc7
No related branches found
No related tags found
No related merge requests found
......@@ -7,8 +7,7 @@ and guarantees logarithmic-time operations. *)
Require Export fin_maps.
Require Import Ascii String list pmap mapset.
Instance assci_eq_dec (a1 a2 : ascii) : Decision (a1 = a2).
Proof. solve_decision. Defined.
Instance assci_eq_dec : a1 a2, Decision (a1 = a2) := ascii_dec.
Instance string_eq_dec (s1 s2 : string) : Decision (s1 = s2).
Proof. solve_decision. Defined.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment