Differences From Artifact [efadc5244f]:
- File src/natools-smaz_tools.adb — part of check-in [24c6ae742e] at 2016-11-23 21:10:58 on branch trunk — smaz_tools: add a dictionary-independent version of the dynamic hashes (user: nat, size: 13492) [annotate] [blame] [check-ins using]
To Artifact [681b96d15c]:
- File src/natools-smaz_tools.adb — part of check-in [4aa72a0c16] at 2016-11-24 21:01:05 on branch trunk — smaz_tools: add a Dummy_Hash function for dictionary-specific tools (user: nat, size: 13683) [annotate] [blame] [check-ins using]
︙ | |||
103 104 105 106 107 108 109 110 111 112 113 114 115 116 | 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | + + + + + + + + | end if; end if; end loop; return Result; end Build_Node; function Dummy_Hash (Value : String) return Natural is pragma Unreferenced (Value); begin raise Program_Error with "Dummy_Hash called"; return 0; end Dummy_Hash; procedure Set_Map (Map : in out Dictionary_Maps.Map; List : in String_Lists.List) is I : Natural := 0; begin |
︙ |