Changeset e9ade0f in git for Singular/claptmpl.cc


Ignore:
Timestamp:
Feb 22, 2007, 3:46:51 PM (17 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
05023393670050d3a3678f07351eda09ade7a6eb
Parents:
ebe987f7339e431a23e717106ffe22dacf14a1a2
Message:
*bricken: templates for matrix


git-svn-id: file:///usr/local/Singular/svn/trunk@9885 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/claptmpl.cc

    rebe987 re9ade0f  
    33*  Computer Algebra System SINGULAR     *
    44****************************************/
    5 // $Id: claptmpl.cc,v 1.39 2007-02-22 10:45:12 bricken Exp $
     5// $Id: claptmpl.cc,v 1.40 2007-02-22 14:46:51 bricken Exp $
    66/*
    77* ABSTRACT - instantiation of all templates
     
    227227//template class std::vector<std::vector<NoroPlaceHolder> >;
    228228template class std::vector<DataNoroCacheNode*>;
    229 template SparseRow* noro_red_to_non_poly_t<unsigned char>(poly p, int &len, NoroCache* cache,slimgb_alg* c);
    230 template SparseRow* noro_red_to_non_poly_t<unsigned short>(poly p, int &len, NoroCache* cache,slimgb_alg* c);
    231 template SparseRow* noro_red_to_non_poly_t<unsigned int>(poly p, int &len, NoroCache* cache,slimgb_alg* c);
     229template SparseRow* noro_red_to_non_poly_t<tgb_uint16>(poly p, int &len, NoroCache* cache,slimgb_alg* c);
     230template SparseRow* noro_red_to_non_poly_t<tgb_uint32>(poly p, int &len, NoroCache* cache,slimgb_alg* c);
     231template SparseRow* noro_red_to_non_poly_t<tgb_uint8>(poly p, int &len, NoroCache* cache,slimgb_alg* c);
     232template void simplest_gauss_modp<tgb_uint16> (tgb_uint16* a, int nrows,int ncols);
     233template void simplest_gauss_modp<tgb_uint32> (tgb_uint32* a, int nrows,int ncols);
     234template void simplest_gauss_modp<tgb_uint8> (tgb_uint8* a, int nrows,int ncols);
     235template poly row_to_poly<tgb_uint8>(tgb_uint8* row, poly* terms, int tn, ring r);
     236template poly row_to_poly<tgb_uint32>(tgb_uint32* row, poly* terms, int tn, ring r);
     237template poly row_to_poly<tgb_uint16>(tgb_uint16* row, poly* terms, int tn, ring r);
    232238//std::priority_queue<MonRedRes>
    233239#endif
Note: See TracChangeset for help on using the changeset viewer.