summaryrefslogtreecommitdiff
path: root/langevin.cpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2021-11-05 17:31:10 +0100
committerJaron Kent-Dobias <jaron@kent-dobias.com>2021-11-05 17:31:10 +0100
commitc60430fc1c5d90ae06d1fd019257474c8f395bef (patch)
tree3e54f263dd676b7e563d4a1388c5da122df59c1e /langevin.cpp
parent8209ca60b99594f26f3e9b21ccdbc8695526eb93 (diff)
downloadcode-c60430fc1c5d90ae06d1fd019257474c8f395bef.tar.gz
code-c60430fc1c5d90ae06d1fd019257474c8f395bef.tar.bz2
code-c60430fc1c5d90ae06d1fd019257474c8f395bef.zip
Lots of progress towards Hessian implementation.
Diffstat (limited to 'langevin.cpp')
-rw-r--r--langevin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/langevin.cpp b/langevin.cpp
index fe26332..d23cb33 100644
--- a/langevin.cpp
+++ b/langevin.cpp
@@ -194,8 +194,8 @@ int main(int argc, char* argv[]) {
*/
- Cord test(J, zSaddle, zSaddleNext, 5);
- test.relax(J, 20, 1, 1e5);
+ Cord test(J, zSaddle, zSaddleNext, 2);
+ test.relaxNewton(J, 20, 1, 1e4);
std::cout << test.z0.transpose() << std::endl;
std::cout << test.z1.transpose() << std::endl;