Skip to content

Commit

Permalink
Merge pull request #11 from timholy/teh/versionbump
Browse files Browse the repository at this point in the history
Bump the required version of Julia
  • Loading branch information
timholy committed Jul 21, 2016
2 parents 62e1ec6 + d12943a commit 1a1ec7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 1 addition & 2 deletions REQUIRE
@@ -1,3 +1,2 @@
julia 0.3
Docile
julia 0.4
Compat
7 changes: 2 additions & 5 deletions src/WoodburyMatrices.jl
Expand Up @@ -2,20 +2,17 @@ isdefined(Base, :__precompile__) && __precompile__()

module WoodburyMatrices

if VERSION < v"0.4.0-dev"
using Docile
end
using Compat

import Base: *, \, A_ldiv_B!, convert, copy, det, full, show, similar, size

export Woodbury, SymWoodbury, liftFactor

#### Woodbury matrices ####
@doc """
"""
`W = Woodbury(A, U, C, V)` creates a matrix `W` identical to `A + U*C*V` whose inverse will be calculated using
the Woodbury matrix identity.
""" ->
"""
type Woodbury{T,AType,UType,VType,CType,CpType} <: AbstractMatrix{T}
A::AType
U::UType
Expand Down

0 comments on commit 1a1ec7d

Please sign in to comment.