Changeset 5ff1d3 in git


Ignore:
Timestamp:
Aug 10, 2011, 7:45:54 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'b4f17ed1d25f93d46dbe29e4b499baecc2fd51bb')
Children:
a8ee9fd4127d41a25614239acf6eebbd463a5c9c
Parents:
045efb6cbccc650666b59532ac1ad8caeccbae8d
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-10 19:45:54+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:19:14+01:00
Message:
FIX: headers cleanup
ADD: p_SetRingOfLeftv is defined in misc_ip.*
Location:
Singular
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • Singular/interpolation.cc

    r045efb r5ff1d3  
    1010#  include <factory/factory.h>
    1111#endif /* HAVE_FACTORY */
     12
     13#include <misc/intvec.h>
     14
     15#include <polys/monomials/ring.h>
     16#include <polys/polys.h>
     17
     18#include <coeffs/longrat.h>
     19
     20#include <kernel/longrat.h>
    1221#include <kernel/febase.h>
    1322#include <kernel/ideals.h>
    14 #include <misc/intvec.h>
    15 #include <polys/polys.h>
    16 #include <Singular/lists.h>
    17 #include <coeffs/longrat.h>
    18 #include <Singular/ipid.h>
    19 #include <polys/monomials/ring.h>
     23
     24#include "lists.h"
     25#include "ipid.h"
    2026
    2127// parameters to debug
  • Singular/janet.cc

    r045efb r5ff1d3  
    66#include <kernel/mod2.h>
    77#include <omalloc/omalloc.h>
     8
     9#include <coeffs/numbers.h>
     10
    811#include <polys/polys.h>
    9 #include <coeffs/numbers.h>
    1012#include <polys/monomials/ring.h>
     13#include <polys/monomials/p_polys.h>
     14#include <polys/kbuckets.h>
     15
    1116#include <kernel/ideals.h>
    12 #include <Singular/subexpr.h>
    13 #include <polys/kbuckets.h>
    14 #include <coeffs/longrat.h>
    15 #include <polys/monomials/p_polys.h>
     17#include <kernel/longrat.h>
     18#include <kernel/febase.h>
     19#include <kernel/kutil.h>
     20
     21#include "subexpr.h"
     22
     23
     24#include "janet.h"
    1625
    1726#if (defined(__CYGWIN__))
    1827#include <ctype.h>
    1928#endif
     29
    2030#include <stdarg.h>
    2131
    22 #include <kernel/febase.h>
    23 #include <Singular/janet.h>
    24 #include <kernel/kutil.h>
    2532
    2633//------GLOBALS-------
  • Singular/misc_ip.h

    r045efb r5ff1d3  
    8989                        );
    9090
     91
     92
     93#ifdef PDEBUG
     94#if (OM_TRACK > 2) && defined(OM_TRACK_CUSTOM)
     95// #include <polys/polys.h>
     96/* Needed for debug Version of p_SetRingOfLeftv, Oliver */
     97void p_SetRingOfLeftv(leftv l, ring r);
     98#endif
     99#endif
     100
    91101#endif
    92102/* MISC_H */
  • Singular/subexpr.cc

    r045efb r5ff1d3  
    1414
    1515#include <kernel/mod2.h>
     16
     17#include <omalloc/omalloc.h>
     18
    1619#include <misc/intvec.h>
    17 #include <Singular/tok.h>
    1820#include <misc/options.h>
    19 #include <Singular/ipid.h>
    20 #include <misc/intvec.h>
    21 #include <omalloc/omalloc.h>
    22 #include <kernel/febase.h>
    23 #include <polys/polys.h>
    24 #include <kernel/ideals.h>
     21
     22
     23#include <coeffs/ffields.h>
     24#include <coeffs/numbers.h>
     25
    2526#include <polys/monomials/maps.h>
    2627#include <polys/matpol.h>
     28#include <polys/monomials/ring.h>
     29#include <polys/polys.h>
     30
     31#include <kernel/longrat.h>
     32// #include <coeffs/longrat.h>
     33
     34#include <kernel/febase.h>
     35#include <kernel/ideals.h>
    2736#include <kernel/kstd1.h>
    2837#include <kernel/timer.h>
    29 #include <polys/monomials/ring.h>
    30 #include <coeffs/ffields.h>
    31 #include <coeffs/numbers.h>
    32 #include <coeffs/longrat.h>
     38#include <kernel/syz.h>
     39
     40#include <Singular/tok.h>
     41#include <Singular/ipid.h>
    3342#include <Singular/ipshell.h>
    3443#include <Singular/lists.h>
    3544#include <Singular/attrib.h>
    3645#include <Singular/silink.h>
    37 #include <kernel/syz.h>
    3846#include <Singular/attrib.h>
    3947#include <Singular/subexpr.h>
    4048#include <Singular/blackbox.h>
     49
     50
    4151
    4252omBin sSubexpr_bin = omGetSpecBin(sizeof(_ssubexpr));
Note: See TracChangeset for help on using the changeset viewer.