Skip to content

Commit

Permalink
Update search_and_matching.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
Tortar authored Nov 12, 2024
1 parent 85ec846 commit 6e6b164
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/markets/search_and_matching.jl
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ function perform_firms_market!(
isempty(sampler) && break
end
end
F_g = F_g[allvalues(sampler)]
F_g = F_g[allinds(sampler)]
I_g = findall(DM_d_ig .> 0)
end

Expand Down Expand Up @@ -416,7 +416,7 @@ function perform_firms_market!(
isempty(sampler) && break
end
end
F_g = F_g[allvalues(sampler)]
F_g = F_g[allinds(sampler)]
I_g = findall(DM_d_ig_ .> 0)
end
end
Expand Down Expand Up @@ -504,7 +504,7 @@ function perform_retail_market!(
isempty(sampler) && break
end
end
F_g = F_g[allvalues(sampler)]
F_g = F_g[allinds(sampler)]
H_g = findall(C_d_hg .> 0)
end

Expand Down Expand Up @@ -538,7 +538,7 @@ function perform_retail_market!(
isempty(sampler) && break
end
end
F_g = F_g[allvalues(sampler)]
F_g = F_g[allinds(sampler)]
H_g = findall(C_d_hg_ .> 0)
end
end
Expand Down

0 comments on commit 6e6b164

Please sign in to comment.