Changeset 34089 for trunk/psLib/src/math/psMinimizePowell.c
- Timestamp:
- Jun 26, 2012, 11:47:13 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psMinimizePowell.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psMinimizePowell.c
r28998 r34089 367 367 psF32 c = 0.0; 368 368 psF32 n = 0.0; 369 psF32 fa = 0.0;370 psF32 fb = 0.0;371 psF32 fc = 0.0;372 369 psF32 fn = 0.0; 373 370 psF32 mul = 0.0; … … 415 412 PS_VECTOR_ADD_MULTIPLE(params, paramMask, line, tmpb, b); 416 413 PS_VECTOR_ADD_MULTIPLE(params, paramMask, line, tmpc, c); 417 fa = func(tmpa, coords); 418 fb = func(tmpb, coords); 419 fc = func(tmpc, coords); 414 psF32 fb = func(tmpb, coords); 415 # if (PS_TRACE_ON) 416 psF32 fa = func(tmpa, coords); 417 psF32 fc = func(tmpc, coords); 420 418 psTrace("psLib.math", 6, "LineMin: f(%f %f %f) is (%f %f %f)\n", a, b, c, fa, fb, fc); 419 # endif 421 420 422 421 // We determine which is the biggest segment in [a,b,c] then split
Note:
See TracChangeset
for help on using the changeset viewer.
