Skip to content

Commit 5298319

Browse files
committed
validate
2 parents 2e7c7f8 + 2bfbaca commit 5298319

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = ["Jean Michel <jean.michel@imj-prg.fr>"]
44
version = "0.1.3"
55

66
[deps]
7-
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" # exactdiv
7+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
88

99
[compat]
1010
LinearAlgebra = "1"

src/ModuleElts.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,12 @@ end
500500
Base.:/(m::$M,b)=merge(/,m,b)
501501
Base.:(//)(m::$M,b)=merge(//,m,b)
502502
Base.:\(b,m::$M)=merge(\,b,m)
503+
Base.div(m::$M,b)=merge(div,m,b)
504+
Base.conj(m::$M)=merge(conj,m)
505+
using LinearAlgebra: LinearAlgebra, exactdiv
506+
LinearAlgebra.exactdiv(m::$M,b)=merge(exactdiv,m,b)
507+
Base.min(m::$M,n::$M)=merge2(min,m,n)
508+
Base.max(m::$M,n::$M)=merge2(max,m,n)
503509

504510
using LinearAlgebra: LinearAlgebra
505511
LinearAlgebra.exactdiv(m::$M,b)=merge(LinearAlgebra.exactdiv,m,b)

0 commit comments

Comments
 (0)