-
Notifications
You must be signed in to change notification settings - Fork 7
ERROR: MinimalPerfectHash not found in require at loading.jl:47 #4
Description
_
_ _ ()_ | A fresh approach to technical computing
() | () () | Documentation: http://docs.julialang.org
_ _ | | __ _ | Type "help()" for help.
| | | | | | |/ ` | |
| | || | | | (| | | Version 0.3.3 (2014-11-23 20:19 UTC)
/ |_'|||__'| | Official http://julialang.org/ release
|__/ | x86_64-w64-mingw32
julia>
julia> using MinimalPerfectHashes
ERROR: too many parameters for type GenericGraph
in include at boot.jl:245
in include_from_node1 at loading.jl:128
while loading C:\Users\SAMSUNG2.julia\v0.3\MinimalPerfectHashes\src\minperfhash.jl, in expression starting on lin
e 15
while loading C:\Users\SAMSUNG2.julia\v0.3\MinimalPerfectHashes\src\MinimalPerfectHashes.jl, in expression starti
ng on line 5
julia> Pkg.update()
INFO: Updating METADATA...
INFO: Updating cache of MinimalPerfectHashes...
INFO: Updating cache of MinimalPerfectHashes...
INFO: Computing changes...
INFO: No packages to install, update or remove
julia> using MinimalPerfectHashes
julia> months = ["jan","feb","mar","apr","may","jun","jul","aug","sep","oct","nov","dec"]
12-element Array{ASCIIString,1}:
"jan"
"feb"
"mar"
"apr"
"may"
"jun"
"jul"
"aug"
"sep"
"oct"
"nov"
"dec"
julia> mph = MinimalPerfectHash(months)
ERROR: MinimalPerfectHash not defined
julia> mph = MinimalPerfectHash(months)
ERROR: MinimalPerfectHash not defined
julia> mph = MinimalPerfectHash
ERROR: MinimalPerfectHash not defined
julia> using MinimalPerfectHash
ERROR: MinimalPerfectHash not found
in require at loading.jl:47
julia> using MinimalPerfectHash
ERROR: MinimalPerfectHash not found
in require at loading.jl:47
julia>
Paul