We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32e2b78 commit 75db0d1Copy full SHA for 75db0d1
src/utils.jl
@@ -189,7 +189,7 @@ $(TYPEDSIGNATURES)
189
190
Read a UAI problem from a file.
191
"""
192
-function uai_problem_from_file(uai_filepath::String; uai_evid_filepath = "", uai_mar_filepath = "", eltype = Float64)::UAIInstance
+function uai_problem_from_file(uai_filepath::String; uai_evid_filepath::String = "", uai_mar_filepath::String = "", eltype = Float64)::UAIInstance
193
nvars, cards, ncliques, factors = read_uai_file(uai_filepath; factor_eltype = eltype)
194
obsvars, obsvals = read_uai_evid_file(uai_evid_filepath)
195
reference_marginals = isempty(uai_mar_filepath) ? Vector{eltype}[] : read_uai_mar_file(uai_mar_filepath)
0 commit comments