mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Shell check has been improved to use well-known width-first search. It significantly reduces computation time on the big shells. Test case has been added. Minor correction in test case
20 lines
580 B
Plaintext
20 lines
580 B
Plaintext
puts "REQUIRED All: Faulty shapes in variables faulty_1 to faulty_"
|
|
puts "========"
|
|
puts "OCC28600"
|
|
puts "========"
|
|
puts ""
|
|
########################################################################################################
|
|
# Bad performance of the checkshape command
|
|
########################################################################################################
|
|
|
|
pload ALL
|
|
|
|
# Read shape.
|
|
testreadstep [locate_data_file bug28600.stp] s1
|
|
|
|
# Measure performance metrics.
|
|
chrono s reset; chrono s start;
|
|
checkshape s1
|
|
chrono s stop counter checkshape; chrono s show;
|
|
|