All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class math.alg.PowerSeries.Factor

java.lang.Object
   |
   +----math.alg.PowerSeries.Factor

public class Factor
extends Object
This class represents Factors of Non-commutative power series, having the form $(X_i)^j$. These are represented as a pair $(i,j)$.

Version:
$Id: Factor.java,v 1.5 1999/02/12 20:39:19 djun Exp djun $

Constructor Index

 o Factor(int, int)
Constructs a new factor with the given index and degree.

Method Index

 o clone()
Returns a clone of this factor.
 o getIndex()
Gets the variable index for this factor
 o getPower()
Gets the variable power for this factor
 o setIndex(int)
Sets the variable index for this factor
 o setPower(int)
Sets the variable power for this factor

Constructors

 o Factor
 public Factor(int index,
               int pow)
Constructs a new factor with the given index and degree.

Methods

 o clone
 public Object clone()
Returns a clone of this factor.

Overrides:
clone in class Object
 o getIndex
 public int getIndex()
Gets the variable index for this factor

 o getPower
 public int getPower()
Gets the variable power for this factor

 o setIndex
 public void setIndex(int index)
Sets the variable index for this factor

 o setPower
 public void setPower(int power)
Sets the variable power for this factor


All Packages  Class Hierarchy  This Package  Previous  Next  Index