Skip to content

Commit 249d071

Browse files
committed
Deal with moval of Base.LinAlg to LinearAlgebra stdlib package
And add Compat 0.48 to requirements.
1 parent c1eb41d commit 249d071

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

REQUIRE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
julia 0.6
2+
Compat 0.48

src/definitions.jl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# This file was formerly a part of Julia. License is MIT: https://julialang.org/license
22

3-
using Base.LinAlg: BlasReal
3+
using Compat
4+
using Compat.LinearAlgebra
5+
using Compat.LinearAlgebra: BlasReal
6+
import Compat.LinearAlgebra: A_mul_B!, A_ldiv_B!
47
import Base: show, summary, size, ndims, length, eltype,
5-
*, A_mul_B!, inv, \, A_ldiv_B!
8+
*, inv, \
69

710
# DFT plan where the inputs are an array of eltype T
811
abstract type Plan{T} end

0 commit comments

Comments
 (0)