X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fflags.h;h=f147fc03612f3def4af2018a9b32f052e84b585e;hp=372b89932ec995a4f8fe1c2de6c778163cb02150;hb=3c3275884e65193743d4b2bcd98637949791aef8;hpb=9fe3a96b35a68c4f6c16c21322161dbb26118ed0 diff --git a/ginac/flags.h b/ginac/flags.h index 372b8993..f147fc03 100644 --- a/ginac/flags.h +++ b/ginac/flags.h @@ -30,7 +30,8 @@ class expand_options { public: enum { expand_indexed = 0x0001, ///< expands (a+b).i to a.i+b.i - expand_function_args = 0x0002 ///< expands the arguments of functions + expand_function_args = 0x0002, ///< expands the arguments of functions + expand_rename_idx = 0x0004 ///< used internally by mul::expand() }; }; @@ -38,7 +39,7 @@ public: class has_options { public: enum { - algebraic = 0x0001, ///< enable algebraic matching + algebraic = 0x0001 ///< enable algebraic matching }; };