Changeset 9f39e6 in git


Ignore:
Timestamp:
Feb 1, 2012, 6:35:13 PM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
b6b61689e26a509292ac79af82cef26348104668
Parents:
72486f0639537653ca068a90c827262845f27ce2
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-01 18:35:13+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-03 18:41:14+01:00
Message:
misc changes

FIX: factory internal includes (better no "factory/" prefix!)
FIX: IntegerProgramming/gen_test.cc: due to C++-Standard main should return an int
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • IntegerProgramming/gen_test.cc

    r72486f0 r9f39e6  
    99#include "testdata.h"
    1010
    11 main()
     11int main(void)
    1212{
    1313  ofstream output1("IP/testmatrix1");
     
    6565  ofstream output6c("IP/testproblem6c");
    6666  random_problems(3*5,5,0,5,output6c);
     67  return 0;
    6768}
    6869#endif
  • factory/libfac/factor/tmpl_inst.cc

    r72486f0 r9f39e6  
    66// #include <factory/templates/ftmpl_array.cc>
    77
    8 #include <factory/factory.h>
     8#include "factory.h"
    99
    10 
    11 
    12 #include <factory/templates/ftmpl_array.cc>
    13 #include <factory/templates/ftmpl_factor.cc>
    14 #include <factory/templates/ftmpl_list.cc>
    15 #include <factory/templates/ftmpl_functions.h>
    16 #include <factory/templates/ftmpl_matrix.cc>
     10#include "templates/ftmpl_array.cc"
     11#include "templates/ftmpl_factor.cc"
     12#include "templates/ftmpl_list.cc"
     13#include "templates/ftmpl_functions.h"
     14#include "templates/ftmpl_matrix.cc"
    1715
    1816template class Factor<CanonicalForm>;
Note: See TracChangeset for help on using the changeset viewer.