-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Curved torus * formatting * general improvements * some work on tests and geodesics * partially working chart stitching * geodesic visualization * small fix * cleanup * faster solver * parallel transport * fix * cleanup * move test down * improve test coverage * polishing torus * small restructuring * log/distance using BVP in a chart * geodesic on torus in Makie * add some docs * Apply suggestions from code review Co-authored-by: Ronny Bergmann <[email protected]> * Addressing some review comments * addressing review * improve docs * bump version * minor improvements Co-authored-by: Ronny Bergmann <[email protected]>
- Loading branch information
1 parent
c5b4990
commit e3af13e
Showing
14 changed files
with
977 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "Manifolds" | ||
uuid = "1cead3c2-87b3-11e9-0ccd-23c62b72b94e" | ||
authors = ["Seth Axen <[email protected]>", "Mateusz Baran <[email protected]>", "Ronny Bergmann <[email protected]>", "Antoine Levitt <[email protected]>"] | ||
version = "0.8.30" | ||
version = "0.8.31" | ||
|
||
[deps] | ||
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" | ||
|
@@ -32,7 +32,7 @@ Einsum = "0.4" | |
Graphs = "1.4" | ||
HybridArrays = "0.4" | ||
Kronecker = "0.4, 0.5" | ||
ManifoldsBase = "0.13.17" | ||
ManifoldsBase = "0.13.19" | ||
MatrixEquations = "2.2" | ||
Plots = "1" | ||
Quaternions = "0.5" | ||
|
@@ -46,7 +46,9 @@ StatsBase = "0.32, 0.33" | |
julia = "1.6" | ||
|
||
[extras] | ||
BoundaryValueDiffEq = "764a87c0-6b3e-53db-9096-fe964310641d" | ||
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" | ||
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def" | ||
DoubleFloats = "497a8b3b-efae-58df-a0af-a86822472b78" | ||
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000" | ||
Gtk = "4c0ca9eb-093a-5379-98c5-f87ac0bbbf44" | ||
|
@@ -63,4 +65,4 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | |
VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92" | ||
|
||
[targets] | ||
test = ["Test", "Colors", "DoubleFloats", "FiniteDifferences", "Gtk", "ImageIO", "ImageMagick", "OrdinaryDiffEq", "NLsolve", "Plots", "PyPlot", "Quaternions", "QuartzImageIO", "RecipesBase"] | ||
test = ["Test", "BoundaryValueDiffEq", "Colors", "DiffEqCallbacks", "DoubleFloats", "FiniteDifferences", "Gtk", "ImageIO", "ImageMagick", "OrdinaryDiffEq", "NLsolve", "Plots", "PyPlot", "Quaternions", "QuartzImageIO", "RecipesBase"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,29 @@ | ||
[deps] | ||
BoundaryValueDiffEq = "764a87c0-6b3e-53db-9096-fe964310641d" | ||
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" | ||
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000" | ||
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6" | ||
HybridArrays = "1baab800-613f-4b0a-84e4-9cd3431bfbb9" | ||
Manifolds = "1cead3c2-87b3-11e9-0ccd-23c62b72b94e" | ||
ManifoldsBase = "3362f125-f0bb-47a3-aa74-596ffd7ef2fb" | ||
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" | ||
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" | ||
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee" | ||
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" | ||
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[compat] | ||
BoundaryValueDiffEq = "2" | ||
DiffEqCallbacks = "2" | ||
Documenter = "0.27" | ||
FiniteDifferences = "0.12" | ||
Graphs = "1.4" | ||
HybridArrays = "0.4" | ||
ManifoldsBase = "0.13" | ||
OrdinaryDiffEq = "6" | ||
Plots = "1" | ||
PyPlot = "2.9" | ||
StaticArrays = "1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
e3af13e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
e3af13e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/69629
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: