From: Christian Bauer Date: Mon, 21 Jul 2003 17:22:32 +0000 (+0000) Subject: subs_no_pattern -> no_pattern, subs_algebraic -> algebraic (but the old names X-Git-Tag: release_1-0-15~21 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=80355fb3d929ecec98171db7a0286b8eda877669 subs_no_pattern -> no_pattern, subs_algebraic -> algebraic (but the old names remain in for backwards compatibility) --- diff --git a/ginac/flags.h b/ginac/flags.h index c14e5840..35cb6e3b 100644 --- a/ginac/flags.h +++ b/ginac/flags.h @@ -38,10 +38,10 @@ public: class subs_options { public: enum { - // this should be called "no_pattern"... - subs_no_pattern = 0x0001, ///< disable pattern matching - // this should be called "algebraic"... - subs_algebraic = 0x0002, ///< enable algebraic substitutions + no_pattern = 0x0001, ///< disable pattern matching + subs_no_pattern = 0x0001, // for backwards compatibility + algebraic = 0x0002, ///< enable algebraic substitutions + subs_algebraic = 0x0002, // for backwards compatibility pattern_is_product = 0x0004, ///< used internally by expairseq::subschildren() pattern_is_not_product = 0x0008 ///< used internally by expairseq::subschildren() };