Changeset 1c3d1f in git for coeffs/test.cc


Ignore:
Timestamp:
Jun 21, 2010, 12:33:40 PM (14 years ago)
Author:
Andreas Steenpass <steenpass@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
37d3186ad34a5dcbcd56103bd58674b22a5b236b
Parents:
e5ffec70440370de33da3fa2773669fe8e35d684
git-author:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2010-06-21 12:33:40+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:15+01:00
Message:
	code for n_long_R (gnumpfl) added
File:
1 edited

Legend:

Unmodified
Added
Removed
  • coeffs/test.cc

    re5ffec7 r1c3d1f  
    88
    99#include <longrat.h>
     10#include <gnumpfl.h>
    1011#include <gnumpc.h>
    1112#include <shortfl.h>
     
    6263    assume( r->cfDelete == nlDelete );   
    6364  }
     65  else if( type == n_long_R )
     66  {
     67    assume( r->cfInit == ngfInit );
     68    assume( r->cfWrite == ngfWrite );
     69    assume( r->cfAdd == ngfAdd );
     70    assume( r->cfDelete == ngfDelete );
     71  }
    6472  else if( type == n_long_C )
    6573  {
     
    112120 
    113121  type = nRegister( n_Q, nlInitChar); assume( type == n_Q );
     122  if( Test(type) )
     123    c ++;
    114124
     125  type = nRegister( n_long_R, ngfInitChar); assume( type == n_long_R );
    115126  if( Test(type) )
    116127    c ++;
Note: See TracChangeset for help on using the changeset viewer.