Skip to content

Commit

Permalink
Include a forgotten header.
Browse files Browse the repository at this point in the history
  • Loading branch information
astamm committed Nov 15, 2023
1 parent ce64e33 commit c04ba06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace anima
virtual bool BelongsToSupport(const ValueType &x) = 0;
virtual double GetDensity(const ValueType &x) = 0;
virtual double GetLogDensity(const ValueType &x) = 0;
virtual double GetCumulative(const ValueType &x);
virtual double GetCumulative(const ValueType &x) = 0;
virtual void Fit(const SampleType &sample, const std::string &method) = 0;
virtual void Random(SampleType &sample, GeneratorType &generator) = 0;
virtual ValueType GetMean() = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#include <itkMacro.h>

#include <algorithm>

namespace anima
{

Expand Down

0 comments on commit c04ba06

Please sign in to comment.