]> www.ginac.de Git - ginac.git/commitdiff
subs_no_pattern -> no_pattern, subs_algebraic -> algebraic (but the old names
authorChristian Bauer <Christian.Bauer@uni-mainz.de>
Mon, 21 Jul 2003 17:22:32 +0000 (17:22 +0000)
committerChristian Bauer <Christian.Bauer@uni-mainz.de>
Mon, 21 Jul 2003 17:22:32 +0000 (17:22 +0000)
remain in for backwards compatibility)

ginac/flags.h

index c14e58408aa64ba765de1b0d26be9d3d8cd8fd4d..35cb6e3b0803e62323d09aa5cad55baf2960734c 100644 (file)
@@ -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()
        };