~ubuntu-branches/ubuntu/saucy/gfan/saucy-proposed

« back to all changes in this revision

Viewing changes to renderer.cpp

  • Committer: Package Import Robot
  • Author(s): Cédric Boutillier
  • Date: 2013-07-09 10:44:01 UTC
  • mfrom: (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130709104401-5q66ozz5j5af0dak
Tags: 0.5+dfsg-3
* Upload to unstable.
* modify remove_failing_tests_on_32bits.patch to replace command of
  0009RenderStairCase test with an empty one instead of deleting it.
* remove lintian override about spelling error

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
int StandardMonomialRenderer::trace(const PolynomialSet &s, int x, int y, int z, int d)
32
32
{
33
 
  int pos;
 
33
  int pos=0;
34
34
 
35
35
  while(1)
36
36
    {
52
52
          z--;
53
53
          break;
54
54
        }
55
 
      
 
55
 
56
56
      if(x<0 || y<0 || z<0)break;
57
57
 
58
58
      bool isIn=isInInitialIdeal(s,x,y,z);
59
 
  
 
59
 
60
60
      if(!isIn && wasIn)
61
61
        return pos;
62
62
    }