From cf3158fa0683b39eaf941afef71ca365c7ebaa7e Mon Sep 17 00:00:00 2001 From: Ian Bell Date: Tue, 3 Jun 2014 15:36:59 +0200 Subject: [PATCH] Fixed bug in Aly-Lee extend function (skipped new elements) Signed-off-by: Ian Bell --- include/Helmholtz.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/Helmholtz.h b/include/Helmholtz.h index f907cf96..8a788c7f 100644 --- a/include/Helmholtz.h +++ b/include/Helmholtz.h @@ -862,6 +862,7 @@ public: this->theta.insert(this->theta.end(), theta.begin(), theta.end()); this->c.insert(this->c.end(), c.begin(), c.end()); this->d.insert(this->d.end(), d.begin(), d.end()); + N += n.size(); } bool is_enabled(){return enabled;};