1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_6/bug26484
nbv debc95ee5a 0026484: BRepExtrema_DistShapeShape hangs
Check in math_GlobOptMin::computeGlobalExtremum(...) method if the parameter went out of boundary(-ies).

Added test case bugs/modalg_6/bug26484
2015-07-29 16:04:54 +03:00

21 lines
547 B
Plaintext

puts "=========="
puts "OCC26484"
puts "=========="
puts ""
###########################################
# BRepExtrema_DistShapeShape hangs
###########################################
restore [locate_data_file bug26484_shape.brep] s1
restore [locate_data_file bug26484_face.brep] s2
distmini dd s1 s2
dump dd_val
distmini dd s2 s1
regexp {([-0-9.+eE]+)$} [dump dd_val] full dist
set expected_dist 13.2039203316305
set tol_abs_dist 1.0e-07
set tol_rel_dist 0.01
checkreal "Dump of dd_val" ${dist} ${expected_dist} ${tol_abs_dist} ${tol_rel_dist}