Changeset c08834 in git


Ignore:
Timestamp:
Jun 9, 2010, 12:38:40 PM (13 years ago)
Author:
Mohamed Barakat <mohamed.barakat@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
Children:
91a305857a5f4e3902521d2874008067469e6d60
Parents:
72f476ba29bee4c07a8d6d6dba881205187ca8ae
git-author:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2010-06-09 12:38:40+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:06+01:00
Message:
renamed output -> reporter in /coeffs
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • coeffs/Makefile.in

    r72f476b rc08834  
    3434CXXFLAGS        = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} -g
    3535CXXTEMPLFLAGS   = -fno-implicit-templates --no-exceptions
    36 CPPFLAGS        = -I${srcdir} -I${includedir} -I${srcdir}/../misc/ -I${srcdir}/../resource/ -I${srcdir}/../output/ -L${srcdir}/../output/ -L${libdir} -lgmp
     36CPPFLAGS        = -I${srcdir} -I${includedir} -I${srcdir}/../misc/ -I${srcdir}/../resource/ -I${srcdir}/../reporter/ -L${srcdir}/../reporter/ -L${libdir} -lgmp
    3737DEFS            = -Dix86_Linux -DHAVE_CONFIG_H -DLDEBUG -DDEBUG -DOM_DEBUG -DHAVE_ASSUME
    3838
     
    9595
    9696test: test.cc libcoeffs.a
    97         ${CXX} ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} test.cc -L. -I. -lcoeffs -o test -lomalloc -loutput
     97        ${CXX} ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} test.cc -L. -I. -lcoeffs -o test -lomalloc -lreporter
  • coeffs/ffields.cc

    r72f476b rc08834  
    77*/
    88
     9#include <auxiliary.h>
    910#include <string.h>
    1011#include "coeffs.h"
    1112#include <mylimits.h>
    12 #include <output.h>
    1313#include <omalloc.h>
     14#include <reporter.h>
    1415#include "numbers.h"
    1516#include "ffields.h"
    16 #include <aux.h>
    1717#include <feFopen.h>
    1818
  • coeffs/gnumpc.cc

    r72f476b rc08834  
    1818#include "gnumpfl.h"
    1919#include "mpr_complex.h"
    20 #include "output.h"
     20#include "reporter.h"
    2121#include "omalloc.h"
    2222
  • coeffs/gnumpfl.cc

    r72f476b rc08834  
    1111#include "config.h"
    1212#include "coeffs.h"
    13 #include <output.h>
    1413#include <omalloc.h>
     14#include <reporter.h>
    1515#include "numbers.h"
    1616#include "modulop.h"
  • coeffs/longrat.cc

    r72f476b rc08834  
    4747#include "config.h"
    4848#include "coeffs.h"
    49 #include "output.h"
     49#include "reporter.h"
    5050#include "omalloc.h"
    5151#include "numbers.h"
  • coeffs/longrat0.cc

    r72f476b rc08834  
    1111#include <string.h>
    1212#include "config.h"
    13 #include "output.h"
     13#include "reporter.h"
    1414#include "coeffs.h"
    1515#include "omalloc.h"
  • coeffs/modulop.cc

    r72f476b rc08834  
    1111#include <omalloc.h>
    1212#include "coeffs.h"
    13 #include "output.h"
     13#include "reporter.h"
    1414#include "numbers.h"
    1515#include "longrat.h"
  • coeffs/mpr_complex.cc

    r72f476b rc08834  
    1515//#ifdef HAVE_MPR
    1616#include "coeffs.h"
    17 #include "output.h"
     17#include "reporter.h"
    1818#include "omalloc.h"
    1919#include "numbers.h"
  • coeffs/numbers.cc

    r72f476b rc08834  
    1111#include <stdlib.h>
    1212#include "coeffs.h"
    13 #include "output.h"
     13#include "reporter.h"
    1414#include "omalloc.h"
    1515#include "numbers.h"
  • coeffs/rmodulo2m.cc

    r72f476b rc08834  
    1313#include <mylimits.h>
    1414#include "coeffs.h"
    15 #include "output.h"
     15#include "reporter.h"
    1616#include "omalloc.h"
    1717#include "numbers.h"
  • coeffs/rmodulon.cc

    r72f476b rc08834  
    1313#include <mylimits.h>
    1414#include "coeffs.h"
    15 #include "output.h"
     15#include "reporter.h"
    1616#include "omalloc.h"
    1717#include "numbers.h"
  • coeffs/shortfl.cc

    r72f476b rc08834  
    1212#include <string.h>
    1313#include "coeffs.h"
    14 #include "output.h"
     14#include "reporter.h"
    1515#include "numbers.h"
    1616#include "longrat.h"
  • coeffs/test.cc

    r72f476b rc08834  
    44#include <coeffs.h>
    55#include <numbers.h>
    6 #include <output.h>
     6#include <reporter.h>
    77#include <omalloc.h>
    88
  • misc/aux.h

    r72f476b rc08834  
    3232
    3333#ifndef NULL
    34 #define NULL        ((void *)(0))
     34#define NULL        (0)
    3535#endif
    3636
Note: See TracChangeset for help on using the changeset viewer.