Changeset daa556 in git


Ignore:
Timestamp:
May 4, 2011, 6:34:14 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
c2e9b1b9072522952d372f53ec641b403bf41564
Parents:
769f28d60d336f61783b5155674cfd7c687cf70a
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-05-04 18:34:14+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:34+01:00
Message:
FIX: cf_gmp.h should be included after asser.h.... ??!?!
Location:
factory
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • factory/NTLconvert.cc

    r769f28 rdaa556  
    11/* $Id$ */
    22#include <config.h>
    3 
    4 #include "cf_gmp.h"
    53
    64#include "assert.h"
     
    1513#include "fac_sqrfree.h"
    1614#include "cf_algorithm.h"
     15
     16#include "cf_gmp.h"
    1717
    1818#ifdef HAVE_NTL
  • factory/canonicalform.cc

    r769f28 rdaa556  
    55
    66#include "assert.h"
     7
     8#include "cf_factory.h"
    79
    810#include "cf_defs.h"
     
    1113#include "cf_iter.h"
    1214#include "int_cf.h"
    13 #include "cf_factory.h"
    1415#include "cf_algorithm.h"
    1516#include "imm.h"
  • factory/cf_factor.cc

    r769f28 rdaa556  
    1 /* emacs edit mode for this file is -*- C++ -*- */
     1/* Emacs edit mode for this file is -*- C++ -*- */
    22/* $Id$ */
    33
     
    1313
    1414#include <config.h>
    15 
    16 #include "cf_gmp.h"
    1715
    1816#include "assert.h"
     
    3836#include "NTLconvert.h"
    3937#endif
     38
     39#include "cf_gmp.h"
    4040
    4141int getExp(); /* cf_char.cc */
  • factory/cf_factory.h

    r769f28 rdaa556  
    77#include <config.h>
    88
    9 #include "cf_gmp.h"
    10 
    119#include "cf_defs.h"
    1210#include "variable.h"
     11#include "cf_gmp.h"
    1312
    1413class InternalCF;
  • factory/cf_gmp.h

    r769f28 rdaa556  
     1#ifndef CF_GMP_H
     2#define CF_GMP_H
     3
     4
    15#define __cplusplus_backup __cplusplus
    26#undef __cplusplus
    37extern "C" {
    48#include <gmp.h>
    5 }
     9};
    610#define __cplusplus __cplusplus_backup
     11
     12
     13#endif /* CF_GMP_H */
  • factory/fac_cantzass.cc

    r769f28 rdaa556  
    33
    44#include <config.h>
    5 
    6 #include "cf_gmp.h"
    75
    86#include "assert.h"
     
    1412#include "fac_sqrfree.h"
    1513#include "gmpext.h"
     14
     15#include "cf_gmp.h"
    1616
    1717int initializeGMP();
  • factory/int_rat.h

    r769f28 rdaa556  
    1717#endif /* NOSTREAMIO */
    1818
    19 #include "cf_gmp.h"
    20 
    2119#include "assert.h"
    2220
     
    2422#include "int_cf.h"
    2523#include "imm.h"
     24#include "cf_gmp.h"
    2625
    2726class InternalRational : public InternalCF
  • factory/singext.cc

    r769f28 rdaa556  
    1313#include "imm.h"
    1414#include "cf_factory.h"
     15
     16#include "cf_gmp.h"
     17
    1518
    1619void gmp_numerator ( const CanonicalForm & f, mpz_ptr result )
  • factory/singext.h

    r769f28 rdaa556  
    77#include <config.h>
    88
     9#include "canonicalform.h"
    910#include "cf_gmp.h"
    10 
    11 #include "canonicalform.h"
    1211
    1312// we need this to copy singulars GF(q) table to ours
Note: See TracChangeset for help on using the changeset viewer.