Fixed bug in Aly-Lee extend function (skipped new elements)

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2014-06-03 15:36:59 +02:00
parent 615c641530
commit cf3158fa06

View File

@@ -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;};