Changeset 90cac2 in git
- Timestamp:
- Mar 19, 1999, 12:09:42 PM (25 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 418dbc7afa82b2a0af86b3aef428cc36c46db41f
- Parents:
- 21610af11cf8c8e7ab59da9b9a97de19ab7b32d5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/pcv.cc
r21610a r90cac2 2 2 * Computer Algebra System SINGULAR * 3 3 *****************************************/ 4 /* $Id: pcv.cc,v 1.1 6 1998-12-21 10:54:53 mschulzeExp $ */4 /* $Id: pcv.cc,v 1.17 1999-03-19 11:09:42 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: conversion between polys and coef vectors … … 95 95 pcvIndexSize=pVariables*sizeof(unsigned*); 96 96 pcvIndex=(unsigned**)Alloc(pcvIndexSize); 97 for(int i=0;i<pVariables;i++) 97 int i; 98 for(i=0;i<pVariables;i++) 98 99 pcvIndex[i]=pcvTable+i*pcvDegBound; 99 for(i nt i=0;i<pcvDegBound;i++)100 for(i=0;i<pcvDegBound;i++) 100 101 pcvIndex[0][i]=i; 101 for(i nt i=1;i<pVariables;i++)102 for(i=1;i<pVariables;i++) 102 103 { 103 104 unsigned x=0;
Note: See TracChangeset
for help on using the changeset viewer.