Changeset ca3864 in git for Singular/extra.cc


Ignore:
Timestamp:
Jan 21, 2015, 2:54:46 PM (9 years ago)
Author:
Stephan Oberfranz <oberfran@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
7023cea48460891d8d8145b55190cccabdc80741
Parents:
4083faab6546fc5c3396c90683e190ab3b4d13274e33058a3cced5901e5f2b51d7435047555c71ca
Message:
---

Merge branch 'spielwiese' of github.com:Singular/Sources into spielwiese
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r4083fa rca3864  
    712712      {
    713713        WerrorS("field required");
    714         return TRUE;
     714        return TRUE;
    715715      }
    716716      matrix pMat  = (matrix)h->Data();
     
    37363736    else
    37373737  #endif
     3738/*==================== test64 =================*/
     3739  #if 0
     3740    if(strcmp(sys_cmd,"test64")==0)
     3741    {
     3742      long l=8;int i;
     3743      for(i=1;i<62;i++)
     3744      {
     3745        l=l<<1;
     3746        number n=n_Init(l,coeffs_BIGINT);
     3747        Print("%ld= ",l);n_Print(n,coeffs_BIGINT);
     3748        CanonicalForm nn=n_convSingNFactoryN(n,TRUE,coeffs_BIGINT);
     3749        n_Delete(&n,coeffs_BIGINT);
     3750        n=n_convFactoryNSingN(nn,coeffs_BIGINT);
     3751        PrintS(" F:");
     3752        n_Print(n,coeffs_BIGINT);
     3753        PrintLn();
     3754        n_Delete(&n,coeffs_BIGINT);
     3755      }
     3756      Print("SIZEOF_LONG=%d\n",SIZEOF_LONG);
     3757      return FALSE;
     3758    }
     3759    else
     3760   #endif
    37383761/*==================== Error =================*/
    37393762      Werror( "(extended) system(\"%s\",...) %s", sys_cmd, feNotImplemented );
Note: See TracChangeset for help on using the changeset viewer.