fix: init numTS in engine constructor

pull/1/head
Thorsten Liebig 2010-05-17 13:05:41 +02:00
parent a0c215a40c
commit b2c436282e
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ Engine* Engine::New(const Operator* op)
Engine::Engine(const Operator* op) Engine::Engine(const Operator* op)
{ {
numTS = 0;
Op = op; Op = op;
for (int n=0;n<3;++n) for (int n=0;n<3;++n)
numLines[n] = Op->GetOriginalNumLines(n); numLines[n] = Op->GetOriginalNumLines(n);