1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
aml f79b19a17e 0028175: Bad result of curve-curve extrema
Extrema between curves has been made producing correct result for the cases of solution located near bounds.

- Class math_GlobOptMin has been improved to use lower order methods of local optimization when high-order methods are failed.
- Add support of conditional optimization (in bounds) in the classes math_BFGS and math_BracketMinimum.
- Turn on conditional optimization in the case of usage of math_BFGS in the class math_GlobOptMin.
- Correct mistake in distmini command, which caused incorrect reading of deflection parameter.
- To avoid possible FPE signals, ensure initialization of fields in the class math/math_BracketMinimum.
- In the algorithms math_BFGS, math_Powell and math_FRPR, take into account that the function math_MultipleVarFunction can return failure status (e.g. when computing D0 out of bounds).

New test cases have been added.
Tests cases are updated.

// correct test case
2016-12-15 16:33:12 +03:00

49 lines
1.6 KiB
Plaintext

puts "============"
puts "CR28175"
puts "==========="
puts ""
###############################################################################
# Bad result of curve-curve extrema
###############################################################################
pload MODELING
# Prepare curves.
restore [locate_data_file bug28175_border.brep] b
restore [locate_data_file bug28175_segment.brep] s
explode b
explode s
mkcurve cb b_6
mkcurve cs s_1
# Check result of forward arguments order.
extrema cb cs 1
set info [length ext_1]
regexp {The length ext_1 is +([-0-9.+eE]+)} $info full len1
if { $len1 > 1e-7 } {
puts "Error: extrema finds distance $len1 (parameters [dval prm_1_1] and [dval prm_1_3]"
puts "while should be 4.5985092243989615e-008 (parameters 23.548772710035486
and 585.69374860054825"
} else {
puts "OK: Correct extrema point is found for forward arguments order"
}
# Check result of reversed arguments order.
extrema cs cb 1
set info [length ext_1]
regexp {The length ext_1 is +([-0-9.+eE]+)} $info full len2
if { $len2 > 1e-7 } {
puts "Error: extrema finds distance $len2 (parameters [dval prm_1_1] and [dval prm_1_3]"
puts "while should be 4.5985092243989615e-008 (parameters 23.548772710035486
and 585.69374860054825"
} else {
puts "OK: Correct extrema point is found for reversed arguments order"
}
# Check that order not influence minimum value.
if { abs ($len1 - $len2) > 1e-4 * ($len1 + $len2) } {
puts "Error: distance between cb to cs ($len1) is not equal to distance between cs and cb ($len2)"
} else {
puts "OK: Extrema values are equal for forward and reversed arguments order"
}