Update Colvars library to version 2024-06-04

This commit is contained in:
Giacomo Fiorin
2024-08-06 01:07:43 +02:00
parent 278accd9ea
commit 133dee9ac1
74 changed files with 7343 additions and 4676 deletions

View File

@ -12,13 +12,11 @@
#include "colvarmodule.h"
#include "colvarvalue.h"
#include "colvarparse.h"
#include "colvar.h"
#include "colvarcomp.h"
colvar::alch_lambda::alch_lambda(std::string const &conf)
: cvc(conf)
colvar::alch_lambda::alch_lambda()
{
set_function_type("alchLambda");
@ -56,12 +54,9 @@ void colvar::alch_lambda::apply_force(colvarvalue const & /* force */)
cvm::proxy->set_alch_lambda(x.real_value);
}
simple_scalar_dist_functions(alch_lambda)
colvar::alch_Flambda::alch_Flambda(std::string const &conf)
: cvc(conf)
colvar::alch_Flambda::alch_Flambda()
{
set_function_type("alch_Flambda");
@ -103,4 +98,3 @@ void colvar::alch_Flambda::apply_force(colvarvalue const &force)
cvm::proxy->indirect_lambda_biasing_force += d2E_dlambda2 * f;
}
simple_scalar_dist_functions(alch_Flambda)