]> www.ginac.de Git - ginac.git/blobdiff - ginac/flags.h
* Change section about Square-free decomposition reflecting the recent
[ginac.git] / ginac / flags.h
index 96838ceceae612b9f3c390330f0d5e97a09c0f3a..b7f6222d7fcdb668f55237f8551957ac62ffd296 100644 (file)
@@ -29,7 +29,8 @@ class expand_options {
 public:
        enum {
                expand_trigonometric = 0x0001,
-               expand_indexed = 0x0002
+               expand_indexed = 0x0002,
+               expand_function_args = 0x0004
        };
 };
 
@@ -69,7 +70,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