File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
name = " SymPy"
2
2
uuid = " 24249f21-da20-56a4-8eb1-6a02cf4ae2e6"
3
- version = " 1.0.14 "
3
+ version = " 1.0.15 "
4
4
5
5
[deps ]
6
6
LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ val_map = Dict(
9
9
" NegativeOne" => :(- 1 ),
10
10
" Half" => :(1 / 2 ),
11
11
" Pi" => :pi ,
12
- " Exp1" => :e ,
12
+ " Exp1" => :ℯ ,
13
13
" Infinity" => :Inf ,
14
14
" NegativeInfinity" => :(- Inf ),
15
15
" ComplexInfinity" => :Inf , # error?
Original file line number Diff line number Diff line change 591
591
@test eltype (A* ones (2 ,2 )) == Sym
592
592
@test eltype (A* Diagonal ([1 ,1 ])) == Sym
593
593
@test_broken eltype (A * I (2 )) == Sym
594
+
595
+ # # Issue 328 with E -> e
596
+ @vars x
597
+ ex = 3 * sympy. E * x
598
+ fn = lambdify (ex)
599
+ @test fn (1 ) ≈ 3 * exp (1 ) * 1
594
600
end
595
601
596
602
@testset " generic programming, issue 223" begin
You can’t perform that action at this time.
0 commit comments