From 08e57c2ff3cd3e50540fe9fb530039a27256a978 Mon Sep 17 00:00:00 2001 From: Bill-Gray Date: Thu, 4 May 2023 13:37:25 -0400 Subject: [PATCH] Reduced the impact of orbit 'unlikelihood'. We now rely more on the residuals to determine how 'likely' the orbit is. --- orb_func.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orb_func.cpp b/orb_func.cpp index 49c6b701..20349296 100644 --- a/orb_func.cpp +++ b/orb_func.cpp @@ -3546,7 +3546,7 @@ static double adjustment_for_orbit_likelihood( const double semimajor_axis, } else rval = 0.; - return( rval * .01); + return( rval * .005); } static int generate_orthonormal_basis( double *x, double *y, double *z, const double *ivect)