File tree Expand file tree Collapse file tree 4 files changed +35
-4
lines changed Expand file tree Collapse file tree 4 files changed +35
-4
lines changed Original file line number Diff line number Diff line change
1
+ # Julia
2
+ Manifest.toml
3
+ docs /Manifest.toml
4
+
5
+ # Documentation build artifacts
6
+ docs /build /
7
+
8
+ # Julia compiled files
9
+ * .ji
10
+ * .o
11
+ * .so
12
+
13
+ # Backup files
14
+ * ~
15
+ * .bak
16
+
17
+ # Editor files
18
+ .vscode /
19
+ .idea /
20
+ * .swp
21
+ * .tmp
22
+
23
+ # OS generated files
24
+ .DS_Store
25
+ .DS_Store ?
26
+ ._ *
27
+ .Spotlight-V100
28
+ .Trashes
29
+ ehthumbs.db
30
+ Thumbs.db
Original file line number Diff line number Diff line change 1
1
[deps ]
2
2
Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
3
- Symbolics = " 0c5d862f-8b57-4792-8d23-62f2024744c7"
4
3
SymbolicIntegration = " 315ce56f-eed0-411d-ab8a-2fbdf9327b51"
4
+ Symbolics = " 0c5d862f-8b57-4792-8d23-62f2024744c7"
5
5
6
6
[compat ]
7
- Documenter = " 1"
7
+ Documenter = " 1"
8
+ Symbolics = " 6"
Original file line number Diff line number Diff line change 1
- using Documenter, SymbolicIntegration
1
+ using Documenter, SymbolicIntegration, Symbolics
2
2
3
3
makedocs (
4
4
sitename= " SymbolicIntegration.jl" ,
Original file line number Diff line number Diff line change @@ -731,7 +731,7 @@ function TowerOfDifferentialFields(terms::Vector{Term}) where
731
731
end
732
732
733
733
734
- Symbolics . @syms ∫ (f, x )
734
+ @variables ∫ (.. , .. )
735
735
736
736
# Main integration interface for Symbolics.jl
737
737
function integrate (f:: Symbolics.Num , x:: Symbolics.Num ; kwargs... )
You can’t perform that action at this time.
0 commit comments