Skip to content

Commit

Permalink
Merge pull request #16 from dehann/maintenance/prepjl1
Browse files Browse the repository at this point in the history
tests pass on Julia 1.0
  • Loading branch information
dehann committed Oct 2, 2018
2 parents 9f267bf + b8bfcb6 commit 6aa8a64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ notifications:
email: false
matrix:
allow_failures:
- julia: 1.0
- julia: nightly
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
Expand Down
4 changes: 2 additions & 2 deletions src/TransformUtils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ oplus(xi::SE3, xj::SE3) = xi*xj

\(qi::Quaternion,qj::Quaternion) = q_conj(qi) * qj

function doinversetransform!(dst::Vector{Float64}, aTb::SE3, src::Vector{Float64})::Void
function doinversetransform!(dst::Vector{Float64}, aTb::SE3, src::Vector{Float64})::Nothing
mul!(dst, transpose(aTb.R.R), src) # At_mul_B!(dst, aTb.R.R, src)
@fastmath @inbounds for i in 1:3, j in 1:3
dst[i] -= aTb.R.R[j,i]*aTb.t[i]
Expand Down Expand Up @@ -486,7 +486,7 @@ function convert(::Type{Euler}, R::SO3)
convert(Euler, convert(Quaternion, R))
end

function convert!(q::Quaternion, E::Euler)::Void
function convert!(q::Quaternion, E::Euler)::Nothing

@fastmath halfroll = 0.5*E.R;
@fastmath halfpitch = 0.5*E.P;
Expand Down
2 changes: 1 addition & 1 deletion test/se3DevTesting.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# dev test oplus and ominus for SE3

using TransformUtils
using Base.Test
using Test


xi = SE3(0)
Expand Down

0 comments on commit 6aa8a64

Please sign in to comment.