Skip to content
Snippets Groups Projects
Commit 81c70b3a authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

corr bug due to the *** int<->uint problem

parent 7778c76d
No related branches found
No related tags found
No related merge requests found
......@@ -35,9 +35,10 @@ CContext::CContext( uint _k, uint _j, uint _i )
return; // not sure whether k=-1 makes sense
POlo f = NOlm::MOM[k];
if ( j==(uint)-1 && f->nJ()==1 )
j = 0;
else if ( j>=f->nJ() )
if ( j==(uint)-1 ) {
if ( f->nJ()==1 )
j = 0;
} else if ( j>=f->nJ() )
throw "invalid evaluation context, j="+strg(j)+">=nJ="+strg(f->nJ());
POld fd = P2D(f);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment