Skip to content

Commit

Permalink
restore non-parallel functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory John Martin committed May 25, 2024
1 parent 1f92cd9 commit c5eecf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mopt/AlgoBGP.jl
Original file line number Diff line number Diff line change
Expand Up @@ -611,8 +611,8 @@ function computeNextIteration!( algo::MAlgoBGP )
# @debug(logger,"debugging chain id $(i.id)")
# next_eval!(i)
# end
# cs = map( x->next_eval(x), algo.chains ) # this does proposal, evaluateObjective, doAcceptRecject
# end
cs = map( x->next_eval(x), algo.chains ) # this does proposal, evaluateObjective, doAcceptRecject
end
# reorder and insert into algo
for i in 1:algo.opts["N"]
algo.chains[i] = cs[map(x->getfield(x,:id) == i,cs)][1]
Expand Down

0 comments on commit c5eecf5

Please sign in to comment.