-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating to latest version of Optimization code.
- Loading branch information
1 parent
891c40b
commit d26939a
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule Optimization
updated
20 files
+35 −16 | CMakeLists.txt | |
+42 −39 | examples/ADMM_example.cpp | |
+5 −20 | examples/CMakeLists.txt | |
+111 −0 | examples/Euclidean_optimization_example.cpp | |
+45 −85 | examples/Riemannian_optimization_example.cpp | |
+0 −411 | examples/TNTUnitTest.cpp | |
+0 −65 | examples/gradient_descent_example.cpp | |
+23 −18 | examples/proximal_gradient_example.cpp | |
+0 −152 | examples/smooth_optimization_example.cpp | |
+12 −9 | include/Optimization/Base/Concepts.h | |
+57 −56 | include/Optimization/Convex/ADMM.h | |
+6 −6 | include/Optimization/Convex/Concepts.h | |
+43 −40 | include/Optimization/Convex/ProximalGradient.h | |
+37 −23 | include/Optimization/Smooth/Concepts.h | |
+53 −50 | include/Optimization/Smooth/GradientDescent.h | |
+165 −85 | include/Optimization/Smooth/TNT.h | |
+41 −0 | tests/CMakeLists.txt | |
+148 −0 | tests/GradientDescent_unit_test.cpp | |
+475 −0 | tests/TNT_unit_test.cpp | |
+9 −0 | tests/gtest_main.cpp |