Skip to content

Commit 2ac51d7

Browse files
fake compat added for LinearAlgebra
1 parent e31fe37 commit 2ac51d7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Statistics = "1"
2222
SymbolicUtils = "1"
2323
Symbolics = "5"
2424
julia = "1.6"
25+
LinearAlgebra = "<0.0.1, 1"
2526

2627
[extras]
2728
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

src/integral.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ julia> integrate(x * sin(2x))
2020
julia> integrate(x * sin(a*x), x; symbolic=true, detailed=false)
2121
(sin(a*x) - a*x*cos(a*x)) / (a^2)
2222
23-
julia> integrate(x * sin(a*x), (x, 0, 1); symbolic=true, detailed=false)
23+
julia> integrate(x * sin(a*x), (x, 0, 1); check symbolic=true, detailed=false)
2424
(sin(a) - a*cos(a)) / (a^2)
2525
```
2626

0 commit comments

Comments
 (0)