Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrea committed Aug 23, 2021
1 parent 41ebf72 commit 60e409d
Show file tree
Hide file tree
Showing 4 changed files with 210 additions and 178 deletions.
2 changes: 1 addition & 1 deletion src/CMAEvolutionStrategy.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ function run!(o, f)
y = sample(o.p)
fvals = evaluate(o.p, f, compute_input(o.p, y))
perm = sortperm(fvals)
noise_handling!(o.p, f, y, fvals, perm)
log!(o, y, fvals, perm)
noise_handling!(o.p, f, y, fvals, perm)
update!(o.p, y, perm)
terminate!(o) && break
if o.logger.verbosity > 0 &&
Expand Down
Loading

2 comments on commit 60e409d

@jbrea
Copy link
Owner Author

@jbrea jbrea commented on 60e409d Aug 23, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/43388

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.2 -m "<description of version>" 60e409dd6098bb27e0d4c13445c0f263dc7ed98e
git push origin v0.2.2

Please # to comment.