X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fflags.h;h=9c11862eac05b40b69589dd34cf9a879e77de4eb;hp=93506f107d9adb125db7231d664143653727b4a2;hb=f449313a24038429447cb02a4798beb7fcf8216e;hpb=4e3a4ac2bcb0837611ea31bc8fc05d84a20c33ac diff --git a/ginac/flags.h b/ginac/flags.h index 93506f10..9c11862e 100644 --- a/ginac/flags.h +++ b/ginac/flags.h @@ -28,7 +28,8 @@ namespace GiNaC { class expand_options { public: enum { - expand_trigonometric = 0x0001 + expand_trigonometric = 0x0001, + expand_indexed = 0x0002 }; }; @@ -68,7 +69,7 @@ public: class status_flags { public: enum { - dynallocated = 0x0001, ///< Heap-allocated (i.e. created by new if we want to be clever and bypass the stack) + dynallocated = 0x0001, ///< Heap-allocated (i.e. created by new if we want to be clever and bypass the stack, @see ex::construct_from_basic() ) evaluated = 0x0002, ///< .eval() has already done its job expanded = 0x0004, ///< .expand() has already done its job hash_calculated = 0x0008 ///< .calchash() has already done its job @@ -128,13 +129,7 @@ public: has_indices, // object has at least one index // answered by class idx - idx, - - // answered by class coloridx - coloridx, - - // answered by class lorentzidx - lorentzidx + idx }; }; @@ -147,15 +142,6 @@ public: }; }; -class csrc_types { -public: - enum { - ctype_float, - ctype_double, - ctype_cl_N - }; -}; - /** Strategies how to clean up the function remember cache. * @see remember_table */ class remember_strategies {