Skip to content
Snippets Groups Projects
Commit c2d1ac6e authored by megmillhouse's avatar megmillhouse
Browse files

Fix glitch Dmin. Now sum(Nglitch) needs to be leq Dmin)

parent e32e4215
No related branches found
No related tags found
1 merge request!289Fix Dmin bug
......@@ -2266,6 +2266,9 @@ void EvolveIntrinsicParameters(struct Data *data, struct Prior *prior, struct Mo
//extra check on minimum number of wavelets for model (signal must have 1)
if(det==-1 && model_y->size < prior->smin) test = 1;
// Check glitch Dmin
if(model_y->size < prior->smin) test = 1;
typ = 3;
}
......
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