1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
ifv 1bf23e5bb6 0031697: Foundation Classes - Expr_GeneralExpression::Derivative does not seem to work (691 & 720)
Expr_NamedUnknown.cxx - wrong comparing of named unknown is fixed

QABugs_20.cxx - new QAcommand is created
QABugs_11.cxx - wrong command is corrected
bug902 - wrong test is corrected
bug31697 - new test is added
2020-08-07 18:49:38 +03:00

32 lines
541 B
Plaintext
Executable File

puts "======="
puts "OCC902"
puts "======="
puts ""
###############
## bad derivative
###############
pload QAcommands
set arg 5
set list [OCC902 $arg]
set we_have [lindex $list 8]
puts "we_have = $we_have"
set must_be_1 "Exp($arg*x)*$arg"
puts "must_be_1 = $must_be_1"
set must_be_2 "$arg*Exp($arg*x)"
puts "must_be_2 = $must_be_2"
if {[string compare $we_have $must_be_1] == 0} {
puts "OCC902 OK"
} else {
if { [string compare $we_have $must_be_2] == 0} {
puts "OCC902 OK"
} else {
puts "OCC902 Faulty"
}
}