Ignore:
Timestamp:
Jul 9, 2009, 10:38:34 AM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
c12297
Parents:
61e92a
git-author:
Frederik Heber <heber@…> (07/09/09 10:36:26)
git-committer:
Frederik Heber <heber@…> (07/09/09 10:38:34)
Message:

fixed compiler warning by changing int to size_t because C++ STL set.size() returns size_t.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/ellipsoid.hpp

    r61e92a r669a7e  
    2222double SumSquaredDistance (const gsl_vector * x, void * params);
    2323bool FitPointSetToEllipsoid(ofstream *out, Vector *set, int N, Vector *EllipsoidCenter, double *EllipsoidLength, double *EllipsoidAngle);
    24 void PickRandomPointSet(ofstream *out, class Tesselation *T, Vector *&x, int N);
    25 void PickRandomNeighbouredPointSet(ofstream *out, class Tesselation *T, class LinkedCell *LC, Vector *&x, int PointsToPick);
     24void PickRandomPointSet(ofstream *out, class Tesselation *T, Vector *&x, size_t PointsToPick);
     25void PickRandomNeighbouredPointSet(ofstream *out, class Tesselation *T, class LinkedCell *LC, Vector *&x, size_t PointsToPick);
    2626void FindDistributionOfEllipsoids(ofstream *out, class Tesselation *T, class LinkedCell *LCList, int N, int number, const char *filename);
    2727
Note: See TracChangeset for help on using the changeset viewer.