diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-07-23 13:51:13 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-07-23 13:51:13 -0400 |
commit | 639552a2649139ba14363f30daa20786532b21b0 (patch) | |
tree | 624ef3537222183d5474d3a2d05a8bf09611d330 /lib/ising.h | |
parent | dd2c47db3512658858685c83dd772603203aaab1 (diff) | |
download | c++-639552a2649139ba14363f30daa20786532b21b0.tar.gz c++-639552a2649139ba14363f30daa20786532b21b0.tar.bz2 c++-639552a2649139ba14363f30daa20786532b21b0.zip |
implemented the discrete gaussian model for roughening
Diffstat (limited to 'lib/ising.h')
-rw-r--r-- | lib/ising.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ising.h b/lib/ising.h index b4856c3..d956d88 100644 --- a/lib/ising.h +++ b/lib/ising.h @@ -19,6 +19,7 @@ * void add(M_t *x1, int factor, X_t x2); * void add(F_t *x1, double factor, X_t x2); * M_t scalar_multiple(int factor, X_t x); + * F_t scalar_multiple(double factor, X_t x); * double norm_squared(F_t x); * void write_magnetization(M_t M, FILE *outfile); * |