You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been going through Base and Base.LinAlg and removed a couple of obsolete functions that were still being exported. TypeCheck.check_return_types has been really useful since it throws an error for each such function; for example:
ERROR: cholpfact not defined
in check_all_module at /Users/jiahao/.julia/v0.3/TypeCheck/src/TypeCheck.jl:13in check_return_types at /Users/jiahao/.julia/v0.3/TypeCheck/src/TypeCheck.jl:44in process_options at ./client.jl:213in _start at ./client.jl:354
It would be nice, however, to collect all such identifiers and report them all together.
The text was updated successfully, but these errors were encountered:
jiahao
added a commit
to JuliaLang/julia
that referenced
this issue
Jul 18, 2014
- A_mul_B
- Ac_mul_b_RFP
- qrp
- cholpfact, cholpfact!
- qrfact, qrfact!
- LinAlg.LUTridiagonal
- LinAlg.solve
Previously, callling any of these resulted in an `ERROR: ____ not defined`.
HT astrieanna/TypeCheck.jl#9
I've been going through
Base
andBase.LinAlg
and removed a couple of obsolete functions that were still being exported.TypeCheck.check_return_types
has been really useful since it throws an error for each such function; for example:It would be nice, however, to collect all such identifiers and report them all together.
The text was updated successfully, but these errors were encountered: