mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-19 15:54:18 +00:00
Estimated hours taken: 1
Branches: main, release
library/hash_table.m:
The arrays containing the keys and values are initialized
using the key and value of the first insertion. This was not
being done if the first insertion was done with
hash_table__det_insert rather than hash_table__set.
tests/hard_coded/Mmakefile:
tests/hard_coded/hash_init_bug.{m,exp}:
Test case.
69 lines
1.8 KiB
Mathematica
69 lines
1.8 KiB
Mathematica
:- module hash_init_bug.
|
|
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io__state::di, io__state::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module assoc_list, exception, hash_table, list.
|
|
:- import_module map, require, std_util, string.
|
|
|
|
main(!IO) :-
|
|
HashPred = (pred(Name::in, Hash1::out, Hash2::out) is det :-
|
|
sym_name_to_string(Name, ".", Str),
|
|
Hash1 = hash(Str),
|
|
Hash2 = hash(from_rev_char_list(to_char_list(Str)))
|
|
),
|
|
HT0 = new(HashPred, 10, 0.8),
|
|
build_table(entries, HT0, HT),
|
|
(
|
|
hash_table__search(HT,
|
|
qualified(unqualified("io"), "read_word"), _)
|
|
->
|
|
io__write_string("error: search succeeded\n", !IO)
|
|
;
|
|
io__write_string("search failed as expected\n", !IO)
|
|
).
|
|
|
|
:- pred build_table(list(sym_name)::in, name_ht::hash_table_di,
|
|
name_ht::hash_table_uo) is det.
|
|
|
|
build_table([], HT, HT).
|
|
build_table([K | T], HT0, HT) :-
|
|
build_table(T, det_insert(HT0, K, 1), HT).
|
|
|
|
:- type name_ht == hash_table(sym_name, int).
|
|
|
|
:- type sym_name
|
|
---> unqualified(string)
|
|
; qualified(sym_name, string).
|
|
|
|
% sym_name_to_string(SymName, Separator, String):
|
|
% convert a symbol name to a string,
|
|
% with module qualifiers separated by Separator.
|
|
:- pred sym_name_to_string(sym_name, string, string).
|
|
:- mode sym_name_to_string(in, in, out) is det.
|
|
|
|
sym_name_to_string(SymName, Separator, String) :-
|
|
sym_name_to_string_2(SymName, Separator, Parts, []),
|
|
string__append_list(Parts, String).
|
|
|
|
:- pred sym_name_to_string_2(sym_name, string,
|
|
list(string), list(string)).
|
|
:- mode sym_name_to_string_2(in, in, out, in) is det.
|
|
|
|
sym_name_to_string_2(qualified(ModuleSpec,Name), Separator) -->
|
|
sym_name_to_string_2(ModuleSpec, Separator),
|
|
[Separator, Name].
|
|
sym_name_to_string_2(unqualified(Name), _) -->
|
|
[Name].
|
|
|
|
:- func entries = list(sym_name).
|
|
|
|
entries = [
|
|
unqualified("main")
|
|
].
|