FuzzyFirstOrderTerm.java

// FILE. . . . . d:/hak/hlt/src/hlt/fot/fuz/FuzzyFirstOrderTerm.java
// EDIT BY . . . Hassan Ait-Kaci
// ON MACHINE. . Hak-Laptop
// STARTED ON. . Mon Aug 13 08:41:04 2018

package hlt.fot.fuz;



This is a class representing a pair made of a first-order term and a fuzzy degree.

See also:  /FirstOrderTerm
Copyright:  © by the author
Author:  Hassan Aït-Kaci
Version:  Last modified on Mon Aug 13 16:55:31 2018 by hak



import hlt.fot.*;

public class FuzzyFirstOrderTerm
{
  /* ************************************************************************ */

  private FirstOrderTerm term;

  public FirstOrderTerm term ()
  {
    return term;
  }

  private double degree = 1.0;

  public double degree ()
  {
    return degree;
  }

  public FuzzyFirstOrderTerm (FirstOrderTerm term, double degree)
  {
    this.term = term;
    this.degree = degree;
  }

  public String toString ()
  {
    return term+" ["+degree+"]";
  }


}


This file was generated on Sat Aug 25 08:03:09 CEST 2018 from file FuzzyFirstOrderTerm.java
by the hlt.language.tools.Hilite Java tool written by Hassan Aït-Kaci