X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fbasic.cpp;h=1c8814d44f89bb8d50579551cbb3a01382916402;hp=8317f8129adb7134b2a5b625d96ba93862befa2c;hb=8bcccf834ad41e94a1a4f3a0304c2945b228b4f4;hpb=a8507b8af1c08d9b27d98d57f95c7ca1a8671e27 diff --git a/ginac/basic.cpp b/ginac/basic.cpp index 8317f812..1c8814d4 100644 --- a/ginac/basic.cpp +++ b/ginac/basic.cpp @@ -1,7 +1,8 @@ /** @file basic.cpp * - * Implementation of GiNaC's ABC. - * + * Implementation of GiNaC's ABC. */ + +/* * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify @@ -23,8 +24,17 @@ #include #include -#include "ginac.h" +#include "basic.h" +#include "ex.h" +#include "numeric.h" +#include "power.h" +#include "symbol.h" +#include "lst.h" +#include "ncmul.h" #include "utils.h" +#include "debugmsg.h" + +namespace GiNaC { ////////// // default constructor, destructor, copy constructor assignment operator and helpers @@ -406,3 +416,5 @@ type_info const & typeid_basic=typeid(some_basic); ////////// int max_recursion_level=1024; + +} // namespace GiNaC