Class FIR

java.lang.Object
org.jacop.examples.fd.filters.Filter
org.jacop.examples.fd.filters.FIR

public class FIR extends Filter
FIR benchmark (16-point FIR filter).

Source: Ramesh Karri, Karin Hogstedt and Alex Orailoglu "Computer-Aided Design of Fault-Tolerant VLSI Design Systems" IEEE Design & Test, Fall 1996 (Vol. 13, No. 3), pp. 88-96

Version:
4.9
  • Constructor Details

    • FIR

      public FIR()
      It constructs a simple FIR filter.
    • FIR

      public FIR(int addDel, int mulDel)
      It constructs a FIR filter with the specified delay for the addition and multiplication operation.
      Parameters:
      addDel - the delay of the addition operation.
      mulDel - the delay of the multiplication operation.
  • Method Details

    • names

      public List<String> names()
      Description copied from class: Filter
      It specifies the names of the operations for the representation of the solution in textual form.
      Specified by:
      names in class Filter
      Returns:
      list of names.
    • namesPipeline

      public List<String> namesPipeline()
      Description copied from class: Filter
      It specifies the names of the operations for the textual representation of the pipelined solution.
      Specified by:
      namesPipeline in class Filter
      Returns:
      list of names.