Changeset 90cac2 in git


Ignore:
Timestamp:
Mar 19, 1999, 12:09:42 PM (25 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
418dbc7afa82b2a0af86b3aef428cc36c46db41f
Parents:
21610af11cf8c8e7ab59da9b9a97de19ab7b32d5
Message:
*hannes: fixed declaration (compatiblity issue)


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

Legend:

Unmodified
Added
Removed
  • Singular/pcv.cc

    r21610a r90cac2  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: pcv.cc,v 1.16 1998-12-21 10:54:53 mschulze Exp $ */
     4/* $Id: pcv.cc,v 1.17 1999-03-19 11:09:42 Singular Exp $ */
    55/*
    66* ABSTRACT: conversion between polys and coef vectors
     
    9595  pcvIndexSize=pVariables*sizeof(unsigned*);
    9696  pcvIndex=(unsigned**)Alloc(pcvIndexSize);
    97   for(int i=0;i<pVariables;i++)
     97  int i;
     98  for(i=0;i<pVariables;i++)
    9899    pcvIndex[i]=pcvTable+i*pcvDegBound;
    99   for(int i=0;i<pcvDegBound;i++)
     100  for(i=0;i<pcvDegBound;i++)
    100101    pcvIndex[0][i]=i;
    101   for(int i=1;i<pVariables;i++)
     102  for(i=1;i<pVariables;i++)
    102103  {
    103104    unsigned x=0;
Note: See TracChangeset for help on using the changeset viewer.