Uses of Class
at.dms.kjc.sir.linear.LinearCost

Packages that use LinearCost
at.dms.kjc.sir.linear Provides analysis and optimization of linear portions of the stream graph. 
 

Uses of LinearCost in at.dms.kjc.sir.linear
 

Fields in at.dms.kjc.sir.linear declared as LinearCost
static LinearCost LinearCost.ZERO
          LinearCost with 0 multiplies and 0 adds.
 

Methods in at.dms.kjc.sir.linear that return LinearCost
 LinearCost LinearFilterRepresentation.getCost()
          returns a LinearCost object that represents the number of multiplies and adds that are necessary to implement this linear filter representation.
 LinearCost LinearCost.plus(LinearCost other)
          returns a new LinearCost that represents the sum (element wise) of this and other.
 

Methods in at.dms.kjc.sir.linear with parameters of type LinearCost
 boolean LinearCost.lessThan(LinearCost other)
          Returns true if this represents less computation than other.
 LinearCost LinearCost.plus(LinearCost other)
          returns a new LinearCost that represents the sum (element wise) of this and other.