Skip to content
Snippets Groups Projects
Commit c22108a3 authored by Bentriou Mahmoud's avatar Bentriou Mahmoud
Browse files

more methods set_x0!

parent 7a33a34f
Branches main
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ export get_index, get_value, length_var, isaccepted ...@@ -30,7 +30,7 @@ export get_index, get_value, length_var, isaccepted
export simulate, volatile_simulate export simulate, volatile_simulate
export distribute_mean_value_lha, mean_value_lha, distribute_prob_accept_lha export distribute_mean_value_lha, mean_value_lha, distribute_prob_accept_lha
export set_param!, set_x0!, set_time_bound!, set_observed_var!, observe_all! export set_param!, set_x0!, set_time_bound!, set_observed_var!, observe_all!
export get_param, getproperty, get_proba_model, get_observed_var export get_param, get_x0, getproperty, get_proba_model, get_observed_var
export isbounded, isaccepted, check_consistency export isbounded, isaccepted, check_consistency
export draw_model!, draw!, fill!, prior_pdf!, prior_pdf, insupport export draw_model!, draw!, fill!, prior_pdf!, prior_pdf, insupport
......
...@@ -465,6 +465,17 @@ function set_param!(am::Model, l_name_p::Vector{ParameterModel}, p::Vector{Float ...@@ -465,6 +465,17 @@ function set_param!(am::Model, l_name_p::Vector{ParameterModel}, p::Vector{Float
set_param!(m, l_name_p[i], p[i]) set_param!(m, l_name_p[i], p[i])
end end
end end
function set_x0!(am::Model, l_name_var::Vector{VariableModel}, x0::Vector{Int})
m = get_proba_model(am)
@assert length(l_name_var) == length(x0) "State names vector state values haven't the same dimensions"
for i = eachindex(l_name_var)
set_x0!(m, l_name_var[i], x0[i])
end
end
function set_x0!(am::Model, name_var::VariableModel, var_i::Int)
m = get_proba_model(am)
m.x0[m.map_var_idx[name_var]] = var_i
end
function set_x0!(am::Model, new_x0::Vector{Int}) function set_x0!(am::Model, new_x0::Vector{Int})
m = get_proba_model(am) m = get_proba_model(am)
@assert length(new_x0) == m.dim_state "New x0 vector hasn't the dimension of state space" @assert length(new_x0) == m.dim_state "New x0 vector hasn't the dimension of state space"
...@@ -472,8 +483,8 @@ function set_x0!(am::Model, new_x0::Vector{Int}) ...@@ -472,8 +483,8 @@ function set_x0!(am::Model, new_x0::Vector{Int})
end end
set_time_bound!(am::Model, b::Float64) = (get_proba_model(am).time_bound = b) set_time_bound!(am::Model, b::Float64) = (get_proba_model(am).time_bound = b)
get_param(am::Model) = get_proba_model(am).p get_param(am::Model) = get_proba_model(am).p
get_x0(am::Model) = get_proba_model(am).x0
function getindex(am::Model, name_p::ParameterModel) function getindex(am::Model, name_p::ParameterModel)
m = get_proba_model(am) m = get_proba_model(am)
m.p[m.map_param_idx[name_p]] m.p[m.map_param_idx[name_p]]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment