Skip to content

Commit 178da77

Browse files
committed
Merge branch 'develop'
And bump version to 0.9.2
2 parents 445b9f1 + 3b5bdee commit 178da77

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ACME"
22
uuid = "ca8b7239-ccd3-5cce-807f-2072f3f0d108"
3-
version = "0.9.1"
3+
version = "0.9.2"
44

55
[deps]
66
IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ACME.jl - Analog Circuit Modeling and Emulation for Julia
22

33
[![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)
4-
[![Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://hsu-ant.github.io/ACME.jl/v0.9.1/)
4+
[![Documentation](https://img.shields.io/badge/docs-v0.9.2-blue.svg)](https://hsu-ant.github.io/ACME.jl/v0.9.2/)
55
[![DOI](https://zenodo.org/badge/48224425.svg)](https://zenodo.org/badge/latestdoi/48224425)
66

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

124124
## Moving on
125125

126-
There is some [documentation](https://hsu-ant.github.io/ACME.jl/v0.9.1/)
126+
There is some [documentation](https://hsu-ant.github.io/ACME.jl/v0.9.2/)
127127
available for how
128128
to use ACME. Additionally, you can take a look at the examples that can be found
129129
in the `examples` directory below `Pkg.dir("ACME")`.

src/kdtree.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ mutable struct Alts{T}
9393
end
9494

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

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

0 commit comments

Comments
 (0)