#337 closed defect (fixed)
psMinimization tol parameter
| Reported by: | Paul Price | Owned by: | |
|---|---|---|---|
| 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 , 21 years ago
| Owner: | changed from to |
|---|
comment:2 by , 21 years ago
| Status: | new → assigned |
|---|
comment:3 by , 21 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.

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