IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Opened 21 years ago

Closed 21 years ago

Last modified 20 years ago

#337 closed defect (fixed)

psMinimization tol parameter

Reported by: Paul Price Owned by: gusciora@…
Priority: high Milestone:
Component: types Version: unspecified
Severity: normal Keywords:
Cc:

Description

tol is the tolerance for the relative difference, not an absolute difference.

Therefore, lines such as:

if (currChi2 > newChi2) {

min->lastDelta = currChi2 - newChi2;

should be:

if (currChi2 > newChi2) {

min->lastDelta = (currChi2 - newChi2)/currChi2;

Change History (5)

comment:1 by robert.desonia@…, 21 years ago

Owner: changed from robert.desonia@… to gusciora@…

comment:2 by gusciora@…, 21 years ago

Status: newassigned

This should be implemented in the current CVS distribution as well as the April
release, I think.

comment:3 by gusciora@…, 21 years ago

Resolution: fixed
Status: assignedclosed

comment:4 by Paul Price, 20 years ago

Keywords: VERIFIED added

Bug has been resolved.... closing.

comment:5 by Paul Price, 20 years ago

Keywords: VERIFIED removed

Bugs have been fixed... closing.

Note: See TracTickets for help on using tickets.