Skip to content

Commit

Permalink
Err comp CLANG
Browse files Browse the repository at this point in the history
  • Loading branch information
deseilligny committed May 13, 2024
1 parent 4cca6d5 commit 47320a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MMVII/include/MMVII_Images.h
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ template <class Type,const int Dim> class cDataTypedIm : public cDataGenUnTypedI
void VD_SetV(const cPtxd<int,Dim> & aP,const double & aV)override;
void Resize(const cPtxd<int,Dim> & aP0,const cPtxd<int,Dim> & aP1,eModeInitImage=eModeInitImage::eMIA_NoInit);

virtual double GetVBL(const cPtxd<tREAL8,Dim> & aP) const
double GetVBL(const cPtxd<tREAL8,Dim> & aP) const override
{
MMVII_INTERNAL_ERROR("No Im3D::GetVBL");
return 0.0;
Expand Down
2 changes: 1 addition & 1 deletion MMVII/src/Topo/Topo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ void BenchTopoComp1example(cTopoData aTopoData, tREAL4 targetSigma0)
aTopo.ToFile(cMMVII_Appli::TmpDirTestMMVII()+"bench-out.json");

// StdOut() << "TOPOOOERR=" << std::abs(aTopo.Sigma0()-targetSigma0) << "\n";
MMVII_INTERNAL_ASSERT_bench(std::abs(aTopo.Sigma0()-targetSigma0)<1e-4,"TopoComp sigma0 final");
MMVII_INTERNAL_ASSERT_bench(std::abs(aTopo.Sigma0()-targetSigma0)<1e-5,"TopoComp sigma0 final");

aSetIntervMultObj.SIUK_Reset();
}
Expand Down

0 comments on commit 47320a7

Please sign in to comment.