diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2017-06-22 23:30:16 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2017-06-22 23:30:16 -0400 |
commit | efcad567ea9414b807017cbaadd7013e9310ca3e (patch) | |
tree | 82e67f187d381f53b7aec0e6d3c34df2bfb2c48c /lib | |
parent | 888ccdcd25f958f7d80a2d47d0d83252456897d1 (diff) | |
download | c++-efcad567ea9414b807017cbaadd7013e9310ca3e.tar.gz c++-efcad567ea9414b807017cbaadd7013e9310ca3e.tar.bz2 c++-efcad567ea9414b807017cbaadd7013e9310ca3e.zip |
removed unnecessary variable
Diffstat (limited to 'lib')
-rw-r--r-- | lib/wolff_tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wolff_tools.c b/lib/wolff_tools.c index 74e5bd6..b3758cc 100644 --- a/lib/wolff_tools.c +++ b/lib/wolff_tools.c @@ -74,7 +74,7 @@ cluster_t *flip_cluster(const graph_t *g, const double *ps, bool *x, for (uint32_t i = 0; i < nn; i++) { bool is_ext; - uint32_t e, v1, v2, vn, ind; + uint32_t e, v1, v2, vn; int32_t *bond_counter; double prob; |