mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
The patch changes the algorithm of choosing the initial approximation for Newton's method. Instead of searching for a point on the fine shifted grid, the algorithm performs initial search for candidate points in the original coarse grid (which is cached in new version). After that particle swarm optimization (PSO) is used to localize the global minimum. This algorithm optimizes a problem by having a population of candidate solutions ("particles"), and moving these particles around in the search-space according to simple mathematical formula over the particle's position and velocity. Each particle's movement is influenced by its local best known position but, is also guided toward the best known positions in the search-space, which are updated as better positions are found by other particles. This strategy has reported good results in solving complex global optimization problems. Current patch implements initial version of PSO for using in Extrema_GenExtCS class. Typically new approach allows to reduce the number of evaluations by 5-10 times. There are only few cases there the numbers of evaluations are comparable.
35 lines
695 B
Plaintext
Executable File
35 lines
695 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC23995"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# GeomAPI_ExtremaCurveCurve class calculates wrong values
|
|
#######################################################################
|
|
|
|
set BugNumber CR23995
|
|
|
|
pload XDE
|
|
|
|
ReadStep D [locate_data_file bug23995_AirfoilRhomb_CheckIntersct3d_myRhombicAirfoilIntersect_root.stp]
|
|
|
|
XCheckProps D
|
|
|
|
XGetShape intCrv D 0:1:1:1
|
|
explode intCrv
|
|
mkcurve intCrv intCrv_1
|
|
plane pl
|
|
|
|
extrema intCrv pl
|
|
|
|
if { [isdraw ext_1] } {
|
|
mkedge result ext_1
|
|
set length 136.705
|
|
} else {
|
|
puts "${BugNumber}: invalid result for ext_1"
|
|
}
|
|
|
|
smallview
|
|
front
|
|
fit
|
|
set only_screen_axo 1
|