X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fex.cpp;h=e036af535de486405856f3f99d6d95e600ba8fb9;hp=652005ddfc4d815c940c0ee204718892adc051f8;hb=9eab44408b9213d8909b7a9e525f404ad06064dd;hpb=a8507b8af1c08d9b27d98d57f95c7ca1a8671e27 diff --git a/ginac/ex.cpp b/ginac/ex.cpp index 652005dd..e036af53 100644 --- a/ginac/ex.cpp +++ b/ginac/ex.cpp @@ -1,7 +1,8 @@ /** @file ex.cpp * - * Implementation of GiNaC's light-weight expression handles. - * + * Implementation of GiNaC's light-weight expression handles. */ + +/* * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify @@ -21,7 +22,15 @@ #include -#include "ginac.h" +#include "ex.h" +#include "add.h" +#include "mul.h" +#include "ncmul.h" +#include "numeric.h" +#include "power.h" +#include "debugmsg.h" + +namespace GiNaC { ////////// // default constructor, destructor, copy constructor assignment operator and helpers @@ -505,3 +514,4 @@ ex const & exMINUSHALF(void) return *eMINUSHALF; } +} // namespace GiNaC