File: bug83

package info (click to toggle)
opencascade 7.9.2%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 301,924 kB
  • sloc: cpp: 1,523,264; tcl: 10,159; cs: 5,173; java: 1,554; sh: 1,342; ansic: 827; xml: 699; makefile: 30; javascript: 22
file content (40 lines) | stat: -rwxr-xr-x 1,333 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
puts "====="
puts "OCC83"
puts "====="
puts ""
#####################################################################
# BUC60912. Section of simple BSpline surfaces is performed too slow.
#####################################################################

restore [locate_data_file BUC60912_sec_slow.brep] c

explode c
renamevar c_1 sh
renamevar c_2 pr

plane f 0 0 0 1 0 0
mkface f f -11 11 -11 11

puts "Info: perform section with plane"
chrono h1 reset; chrono h1 start
bsection r1 f pr
chrono h1 stop counter "CPU section r1"

puts "Info: perform section with planar BSpline surface"
chrono h2 reset; chrono h2 start
bsection r2 sh pr
chrono h2 stop counter "CPU section r2"

regexp {Elapsed time: +([-0-9.+eE]+) Hours +([-0-9.+eE]+) Minutes +([-0-9.+eE]+) Seconds} [dchrono h1 show] full h1_Hours h1_Minutes h1_Seconds
regexp {Elapsed time: +([-0-9.+eE]+) Hours +([-0-9.+eE]+) Minutes +([-0-9.+eE]+) Seconds} [dchrono h2 show] full h2_Hours h2_Minutes h2_Seconds

set h1_Time [expr ${h1_Hours}*60.*60. + ${h1_Minutes}*60. + ${h1_Seconds} ]
set h2_Time [expr ${h2_Hours}*60.*60. + ${h2_Minutes}*60. + ${h2_Seconds} ]

if { ${h1_Time} > 0.1 } {
   puts "Error: Section of simple BSpline surfaces_1 is performed too slow"
}

if { ${h2_Time} > 0.1 } {
   puts "Error: Section of simple BSpline surfaces_2 is performed too slow"
}