Changeset a40080 in git


Ignore:
Timestamp:
Aug 25, 2011, 6:58:47 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'fc741b6502fd8a97288eaa3eba6e5220f3c3df87')
Children:
4a4e294c1281857cdf5d91f50cfa1c1f222226b1
Parents:
dbcf787c5d91a92e37ade8d0ac59dc712be5c207
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-25 18:58:47+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:30+01:00
Message:
CHG: minor changes
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • Singular/cntrlc.cc

    rdbcf787 ra40080  
    2424
    2525#include <kernel/polys.h>
    26 
    27 #include <Singular/tok.h>
    28 #include <Singular/ipshell.h>
    2926#include <kernel/febase.h>
    30 #include <Singular/cntrlc.h>
    31 #include <Singular/feOpt.h>
    32 #include <Singular/version.h>
    33 #include <Singular/silink.h>
     27
     28#include "tok.h"
     29#include "ipshell.h"
     30#include "cntrlc.h"
     31#include "feOpt.h"
     32#include "version.h"
     33#include "silink.h"
    3434
    3535/* undef, if you don't want GDB to come up on error */
  • kernel/makefile

    rdbcf787 ra40080  
    3535## compiler and linker options
    3636##
    37 LIBPOLYS_CFLAGS = -I.. -I../libpolys -DHAVE_SINGULAR -I/opt/local/include
     37LIBPOLYS_CFLAGS = -I.. -I../libpolys -I/opt/local/include
    3838LIBPOLYS_LIBS   = -L../factory -L../omalloc -L../libpolys/misc -L../libpolys/reporter -L../libpolys/resources -L../libpolys/coeffs -L../libpolys/polys -lpolys -lcoeffs -lresources -lreporter -lmisc -lfactory -lomalloc -L/opt/local/lib -lntl -lgmp -ldl
    3939LIBPOLYS_LIBSG  = -L../factory -L../omalloc -L../libpolys/misc -L../libpolys/reporter -L../libpolys/resources -L../libpolys/coeffs -L../libpolys/polys -lpolys_g -lcoeffs_g -lresources_g -lreporter_g -lmisc_g -lfactory -lomalloc_g -L/opt/local/lib  -lntl -lgmp -ldl
  • libpolys/polys/monomials/p_polys.h

    rdbcf787 ra40080  
    5858static inline number& p_GetCoeff(poly p, const ring r)
    5959{
    60   assume(p != NULL);
    6160  assume(r != NULL);
    62   return p->coef;
     61  return pGetCoeff(p);
    6362}
    6463
  • libpolys/polys/pDebug.cc

    rdbcf787 ra40080  
    1212#ifndef PDEBUG_CC
    1313#define PDEBUG_CC
     14
    1415#include <stdarg.h>
    1516#include <stdio.h>
     
    1819#include "config.h"
    1920#include <misc/auxiliary.h>
     21
     22
    2023#ifdef PDEBUG
    2124
     
    2427// #define PDEBUG 2
    2528
    26 //#include <polys/monomials/p_polys.h>
    27 //#include <output.h>
    2829#include <omalloc/omalloc.h>
     30
    2931#include <polys/monomials/ring.h>
    3032#include <polys/monomials/p_polys.h>
     33
    3134#include <coeffs/coeffs.h>
    3235
  • libpolys/polys/templates/p_Procs_Dynamic.cc

    rdbcf787 ra40080  
    1616#endif
    1717
     18#include <reporter/reporter.h>
     19
    1820// #include <polys/structs.h>
    1921#include <polys/monomials/ring.h>
    2022#include <polys/monomials/p_polys.h>
     23
     24#include <polys/kbuckets.h>
     25
     26#include <polys/templates/p_Numbers.h>
     27
    2128#include <polys/templates/p_Procs.h>
    22 #include <polys/templates/p_Numbers.h>
    2329#include <polys/templates/p_MemCmp.h>
    2430#include <polys/templates/p_MemAdd.h>
    2531#include <polys/templates/p_MemCopy.h>
    26 #include <polys/kbuckets.h>
    27 #include <reporter/reporter.h>
     32
    2833
    2934#ifdef HAVE_DL
  • libpolys/tests/rings_test.h

    rdbcf787 ra40080  
    5656  {
    5757    rWrite(r); PrintLn();
    58   #ifdef RDEBUG
     58#ifdef RDEBUG
    5959    rDebugPrint(r); PrintLn();
    60   #endif
     60#endif
    6161  }
    6262static inline void Test(const ring)
Note: See TracChangeset for help on using the changeset viewer.