mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
- The maximum value of cpulimit in test cases was limited to 1000 seconds (~ 17 minutes) - cpulimit 1000 has been added to hlr/begin
24 lines
470 B
Plaintext
24 lines
470 B
Plaintext
pload TOPTEST
|
|
pload XDE
|
|
pload VISUALIZATION
|
|
|
|
if { [info exists imagedir] == 0 } {
|
|
set imagedir .
|
|
}
|
|
|
|
cpulimit 1000
|
|
|
|
set depsilon 1.e-7
|
|
|
|
proc COMPUTE_HLR {viewname algotype} {
|
|
uplevel #0 top
|
|
uplevel #0 clear
|
|
uplevel #0 vinit View1
|
|
uplevel #0 vdisplay a
|
|
uplevel #0 $viewname
|
|
uplevel #0 vcomputehlr a result -algoType $algotype
|
|
uplevel #0 fit
|
|
if { [string compare $algotype "algo"] == 0 } {
|
|
uplevel #0 build3d result
|
|
}
|
|
} |