Changeset d1dc39 in git for factory/facFqBivarUtil.cc


Ignore:
Timestamp:
Apr 28, 2012, 10:11:51 PM (11 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
7a1151d0e820ebe7486137ac2e2edc736ee573fd
Parents:
18a66064a9a8616bef22907b60e68633bfc80c55
git-author:
Martin Lee <martinlee84@web.de>2012-04-28 22:11:51+02:00
git-committer:
Martin Lee <martinlee84@web.de>2012-05-07 18:19:12+02:00
Message:
fix: deleted unused variables
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/facFqBivarUtil.cc

    r18a660 rd1dc39  
    669669  int** newtonPolyg= newtonPolygon (F, sizeOfNewtonPolygon);
    670670
    671   int minXIndex= 0, minYIndex= 0, maxXIndex= 0, maxYIndex= 0;
    672671  int minX, minY, maxX, maxY;
    673672  minX= newtonPolyg [0] [0];
     
    678677  {
    679678    if (minX > newtonPolyg [i] [0])
    680     {
    681679      minX= newtonPolyg [i] [0];
    682       minXIndex= i;
    683     }
    684680    if (maxX < newtonPolyg [i] [0])
    685     {
    686681      maxX= newtonPolyg [i] [0];
    687       maxXIndex= i;
    688     }
    689682    if (minY > newtonPolyg [i] [1])
    690     {
    691683      minY= newtonPolyg [i] [1];
    692       minYIndex= i;
    693     }
    694684    if (maxY < newtonPolyg [i] [1])
    695     {
    696685      maxY= newtonPolyg [i] [1];
    697       maxYIndex= i;
    698     }
    699686  }
    700687
Note: See TracChangeset for help on using the changeset viewer.