Skip to content

Commit 2e7c7f8

Browse files
committed
defined exactdiv and bumped version number
1 parent 08225fa commit 2e7c7f8

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Project.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
name = "ModuleElts"
22
uuid = "4249f315-58d4-4c46-b324-3577fc7dfca0"
33
authors = ["Jean Michel <jean.michel@imj-prg.fr>"]
4-
version = "0.1.2"
4+
version = "0.1.3"
5+
6+
[deps]
7+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" # exactdiv
58

69
[compat]
10+
LinearAlgebra = "1"
711
julia = "1"
812

913
[extras]

src/ModuleElts.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,8 @@ Base.:/(m::$M,b)=merge(/,m,b)
501501
Base.:(//)(m::$M,b)=merge(//,m,b)
502502
Base.:\(b,m::$M)=merge(\,b,m)
503503

504+
using LinearAlgebra: LinearAlgebra
505+
LinearAlgebra.exactdiv(m::$M,b)=merge(LinearAlgebra.exactdiv,m,b)
504506
end
505507
end
506508
end

0 commit comments

Comments
 (0)