Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
And bump version to 0.9.2
  • Loading branch information
martinholters committed Dec 16, 2019
2 parents 445b9f1 + 3b5bdee commit eb9a2a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
@@ -1,6 +1,6 @@
name = "ACME"
uuid = "ca8b7239-ccd3-5cce-807f-2072f3f0d108"
version = "0.9.1"
version = "0.9.2"

[deps]
IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e"
Expand Down
4 changes: 2 additions & 2 deletions README.md
@@ -1,7 +1,7 @@
# ACME.jl - Analog Circuit Modeling and Emulation for Julia

[![Join the chat at https://gitter.im/HSU-ANT/ACME.jl](https://badges.gitter.im/HSU-ANT/ACME.jl.svg)](https://gitter.im/HSU-ANT/ACME.jl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://hsu-ant.github.io/ACME.jl/v0.9.1/)
[![Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://hsu-ant.github.io/ACME.jl/v0.9.2/)
[![DOI](https://zenodo.org/badge/48224425.svg)](https://zenodo.org/badge/latestdoi/48224425)

ACME is a [Julia](http://julialang.org/) package for the simulation of
Expand Down Expand Up @@ -123,7 +123,7 @@ fail to run altogether.

## Moving on

There is some [documentation](https://hsu-ant.github.io/ACME.jl/v0.9.1/)
There is some [documentation](https://hsu-ant.github.io/ACME.jl/v0.9.2/)
available for how
to use ACME. Additionally, you can take a look at the examples that can be found
in the `examples` directory below `Pkg.dir("ACME")`.
Expand Down
2 changes: 1 addition & 1 deletion src/kdtree.jl
Expand Up @@ -93,7 +93,7 @@ mutable struct Alts{T}
end

Alts(p::Vector{T}) where {T} =
Alts([AltEntry(1, Vector{T}(undef, length(p)), zero(T))], typemax(T), 0, 1)
Alts([AltEntry(1, zeros(T, length(p)), zero(T))], typemax(T), 0, 1)

function init!(alts::Alts{T}, best_dist, best_pidx) where {T}
alts.number_valid = 1
Expand Down

0 comments on commit eb9a2a7

Please sign in to comment.