Skip to content

Commit

Permalink
Further work on moving functions over to the other packages and disen…
Browse files Browse the repository at this point in the history
…tangeling them here further.
  • Loading branch information
kellertuer committed Nov 29, 2023
1 parent 3645634 commit 45bc8b9
Show file tree
Hide file tree
Showing 21 changed files with 46 additions and 781 deletions.
11 changes: 8 additions & 3 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,14 @@ and their documentation and testing has been extendede.
### Changed

* Bumped and added dependencies on all 3 Project.toml files, the main one, the docs/, an the tutorials/ one.
* `costIntrICTV12` is now available as [`ManoptExamples.Intrinsic_infimal_convolution_TV12`]()
* `costL2TV` is not available as `ManoptExamples.L2_Total_Variation`

* `costIntrICTV12` is available as [`ManoptExamples.Intrinsic_infimal_convolution_TV12`]()
* `grad_Intrinsic_infimal_convolution_TV12` is available as [`ManoptExamples.Intrinsic_infimal_convolution_TV12``]()
* `costL2TV` is available as [`ManoptExamples.L2_Total_Variation`]()
* `costL2TV12` is available as [`ManoptExamples.L2_Total_Variation_1_2`]()
* `costL2TV2` is available as [`ManoptExamples.L2_second_order_Total_Variation`]()
* `costTV` is available as [`ManoptExamples.Total_Variation`]()
* `costTV2` is available as [`ManoptExamples.second_order_Total_Variation`]()
*
## [0.4.43] – November 19, 2023

### Added
Expand Down
7 changes: 5 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Manopt"
uuid = "0fc0a36d-df90-57f3-8f93-d78a9fc72bb5"
authors = ["Ronny Bergmann <[email protected]>"]
version = "0.4.43"
version = "0.4.44"

[deps]
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
Expand Down Expand Up @@ -47,6 +47,7 @@ LRUCache = "1.4"
ManifoldDiff = "0.3.8"
Manifolds = "0.9"
ManifoldsBase = "0.15"
ManoptExamples = "0.1.4"
Markdown = "1.6"
PolynomialRoots = "1"
Printf = "1.6"
Expand All @@ -62,9 +63,11 @@ ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
LRUCache = "8ac3fa9e-de4c-5943-b1dc-09c6b5f20637"
LineSearches = "d3d80556-e9d4-5f37-9878-2ab0fcc64255"
ManifoldDiff = "af67fdf4-a580-4b9f-bbec-742ef357defd"
Manifolds = "1cead3c2-87b3-11e9-0ccd-23c62b72b94e"
ManoptExamples = "5b8d5e80-5788-45cb-83d6-5e8f1484217d"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "ForwardDiff", "JuMP", "Manifolds", "Plots", "LineSearches", "LRUCache"]
test = ["Test", "ForwardDiff", "JuMP", "Manifolds", "ManoptExamples", "ManifoldDiff", "Plots", "LineSearches", "LRUCache"]
12 changes: 0 additions & 12 deletions src/Manopt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,8 @@ using Dates: Millisecond, Nanosecond, Period, canonicalize, value
using LinearAlgebra:
Diagonal, I, eigen, eigvals, tril, Symmetric, dot, cholesky, eigmin, opnorm
using ManifoldDiff:
adjoint_Jacobi_field,
adjoint_Jacobi_field!,
adjoint_differential_exp_argument,
adjoint_differential_exp_argument!,
adjoint_differential_exp_basepoint,
adjoint_differential_exp_basepoint!,
adjoint_differential_log_argument,
adjoint_differential_log_argument!,
adjoint_differential_log_basepoint,
adjoint_differential_log_basepoint!,
adjoint_differential_shortest_geodesic_endpoint,
adjoint_differential_shortest_geodesic_endpoint!,
adjoint_differential_shortest_geodesic_startpoint,
adjoint_differential_shortest_geodesic_startpoint!,
differential_exp_argument,
differential_exp_argument!,
differential_exp_basepoint,
Expand Down
25 changes: 0 additions & 25 deletions test/functions/test_adjoint_differentials.jl

This file was deleted.

186 changes: 0 additions & 186 deletions test/functions/test_bezier.jl

This file was deleted.

27 changes: 0 additions & 27 deletions test/functions/test_costs.jl

This file was deleted.

66 changes: 0 additions & 66 deletions test/functions/test_differentials.jl

This file was deleted.

Loading

0 comments on commit 45bc8b9

Please sign in to comment.