git://www.ginac.de
/
ginac.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
documentation update
[ginac.git]
/
check
/
exam_differentiation.cpp
diff --git
a/check/exam_differentiation.cpp
b/check/exam_differentiation.cpp
index 33b13b1f05d3ccee9e82094d9425fc88b8505a23..8f739ff448a1b1b297458bdb163f4c98c53b1828 100644
(file)
--- a/
check/exam_differentiation.cpp
+++ b/
check/exam_differentiation.cpp
@@
-26,7
+26,7
@@
static unsigned check_diff(const ex &e, const symbol &x,
const ex &d, unsigned nth=1)
{
ex ed = e.diff(x, nth);
const ex &d, unsigned nth=1)
{
ex ed = e.diff(x, nth);
- if (
(ed - d).compare(ex(0)) != 0
) {
+ if (
!(ed - d).is_zero()
) {
switch (nth) {
case 0:
clog << "zeroth ";
switch (nth) {
case 0:
clog << "zeroth ";
@@
-223,7
+223,7
@@
static unsigned exam_differentiation6()
ed = series_to_poly(ed);
d = series_to_poly(d);
ed = series_to_poly(ed);
d = series_to_poly(d);
- if (
(ed - d).compare(ex(0)) != 0
) {
+ if (
!(ed - d).is_zero()
) {
clog << "derivative of " << e << " by " << x << " returned "
<< ed << " instead of " << d << ")" << endl;
return 1;
clog << "derivative of " << e << " by " << x << " returned "
<< ed << " instead of " << d << ")" << endl;
return 1;