mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
math_GlobOptMin - new global optimization minimization algorithm Extrema_GlobOptFuncCC, Extrema_ExtCC, Extrema_ExtCC2d - implementation of GlobOptMin algorithm to extrema curve / curve Extrema_CurveCache - deleted as obsolete code ChFi3d_Builder.cxx - fixed processing of extrema math_NewtonMinimum.cxx - fixed step to avoid incorrect behavior Test cases modification to meet new behavior.
31 lines
735 B
Plaintext
31 lines
735 B
Plaintext
puts "============"
|
|
puts "OCC24200"
|
|
puts "============"
|
|
puts ""
|
|
#################################################
|
|
# Wrong result obtained by Extrema Curve/Curve
|
|
#################################################
|
|
|
|
restore [locate_data_file bug24200_c1] c1
|
|
restore [locate_data_file bug24200_c2] c2
|
|
set info_1 [extrema c1 c2]
|
|
|
|
trim c1t c1 677.8 678.8
|
|
trim c2t c2 2477 2479
|
|
extrema c1t c2t
|
|
|
|
cvalue c1t 678.34269564178146 x y z
|
|
vertex v1 x y z
|
|
cvalue c2t 2478.1205500811761 x y z
|
|
vertex v2 x y z
|
|
distmini d v1 v2
|
|
regexp {([-0-9.+eE]+)} [dump d_val] full dist
|
|
|
|
set checkdist 2.54211497292521e-013
|
|
|
|
if { [expr 1.*abs($checkdist - $dist)/$checkdist] > 0.1 } {
|
|
puts "Error : Distance is wrong"
|
|
} else {
|
|
puts "OK: Distance is correct"
|
|
}
|