Changeset 1112b76 in git for coeffs/rmodulo2m.cc


Ignore:
Timestamp:
Jun 22, 2010, 12:41:01 PM (14 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
d61b83a9e2debd2805137931b5341399516d2a63
Parents:
d4531110717a559c771df1b82982574879ac0fc5
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2010-06-22 12:41:01+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:16+01:00
Message:
Bug in rmodulon.cc: nrnSetExp expects some previous initialization but ignores the given parameter
File:
1 edited

Legend:

Unmodified
Added
Removed
  • coeffs/rmodulo2m.cc

    rd45311 r1112b76  
    2929
    3030/* for initializing function pointers */
    31 void nr2mInitChar (coeffs r, void*)
    32 {
    33      nr2mInitExp(r->ch, r);
     31void nr2mInitChar (coeffs r, void* p)
     32{
     33 
     34  nr2mInitExp((int)(long)(p), r);
     35
    3436     r->cfInit       = nr2mInit;
    3537     r->cfCopy       = ndCopy;
     
    613615 */
    614616
    615 void nr2mSetExp(int m, const coeffs r)
     617void nr2mSetExp(int m, coeffs r)
    616618{
    617619  if (m > 1)
     
    630632}
    631633
    632 void nr2mInitExp(int m, const coeffs r)
     634void nr2mInitExp(int m, coeffs r)
    633635{
    634636  nr2mSetExp(m, r);
Note: See TracChangeset for help on using the changeset viewer.