Skip to content
Snippets Groups Projects
Commit e34950af authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

BUG: const method in prolate

parent 62c25fc6
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ public:
{
return m_OriginalProfile;
}
double ComputeEnergy(double resampleRatio);
double ComputeEnergy(double resampleRatio) const;
inline TOutput operator()( const TInput & A ) const
{
......
......@@ -101,7 +101,7 @@ ProlateFunction<TInput, TOutput>
template<class TInput, class TOutput>
double
ProlateFunction<TInput, TOutput>
::ComputeEnergy(double resampleRatio)
::ComputeEnergy(double resampleRatio) const
{
vnl_vector<vcl_complex<double> > resampledProfile(1024);
resampledProfile.fill(0);
......
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