X-Git-Url: https://ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Fflags.h;h=60c10fed2034862ade164e5cee32be8a9b4d11e9;hb=aaaa74e1033fdd659b4420835b348c72f5fab536;hp=9c11862eac05b40b69589dd34cf9a879e77de4eb;hpb=7cad9b41c97f0b042ba4af8080e82c8ad4804560;p=ginac.git diff --git a/ginac/flags.h b/ginac/flags.h index 9c11862e..60c10fed 100644 --- a/ginac/flags.h +++ b/ginac/flags.h @@ -3,7 +3,7 @@ * Collection of all flags used through the GiNaC framework. */ /* - * GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2002 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -29,7 +29,8 @@ class expand_options { public: enum { expand_trigonometric = 0x0001, - expand_indexed = 0x0002 + expand_indexed = 0x0002, + expand_function_args = 0x0004 }; }; @@ -71,7 +72,7 @@ public: enum { 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 + expanded = 0x0004, ///< .expand(0) has already done its job (other expand() options ignore this flag) hash_calculated = 0x0008 ///< .calchash() has already done its job }; };