]> www.ginac.de Git - ginac.git/commitdiff
added error handling to op()/let_op()
authorChristian Bauer <Christian.Bauer@uni-mainz.de>
Thu, 14 Oct 2004 19:36:45 +0000 (19:36 +0000)
committerChristian Bauer <Christian.Bauer@uni-mainz.de>
Thu, 14 Oct 2004 19:36:45 +0000 (19:36 +0000)
ginac/integral.cpp

index 467cf2909a6aa02f702586d1c1db82151ec4b502..d2815c36f3b713e7b55a480cc12597ba38beac64 100644 (file)
@@ -319,30 +319,34 @@ ex integral::op(size_t i) const
 {
        GINAC_ASSERT(i<4);
 
-       switch(i) {
-               case(0):
+       switch (i) {
+               case 0:
                        return x;
-               case(1):
+               case 1:
                        return a;
-               case(2):
+               case 2:
                        return b;
-               case(3):
+               case 3:
                        return f;
+               default:
+                       throw (std::out_of_range("integral::op() out of range"));
        }
 }
 
 ex & integral::let_op(size_t i)
 {
        ensure_if_modifiable();
-       switch(i) {
-               case(0):
+       switch (i) {
+               case 0:
                        return x;
-               case(1):
+               case 1:
                        return a;
-               case(2):
+               case 2:
                        return b;
-               case(3):
+               case 3:
                        return f;
+               default:
+                       throw (std::out_of_range("integral::let_op() out of range"));
        }
 }
 
@@ -390,7 +394,8 @@ ex integral::expand(unsigned options) const
 }
 
 ex integral::derivative(const symbol & s) const
-{      if (s==x)
+{
+       if (s==x)
                throw(logic_error("differentiation with respect to dummy variable"));
        return b.diff(s)*f.subs(x==b)-a.diff(s)*f.subs(x==a)+integral(x, a, b, f.diff(s));
 }