From 80355fb3d929ecec98171db7a0286b8eda877669 Mon Sep 17 00:00:00 2001 From: Christian Bauer Date: Mon, 21 Jul 2003 17:22:32 +0000 Subject: [PATCH] subs_no_pattern -> no_pattern, subs_algebraic -> algebraic (but the old names remain in for backwards compatibility) --- ginac/flags.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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() }; -- 2.44.0