previous up next
Go backward to Negations
Go up to Top
Go forward to Inversion of Negation
RISC-Linz logo

Operational Interpretation

public final class Not implements Formula
{
  private Formula formula;

  ...

  public boolean eval() throws EvalException
  {
    if (formula.eval())
      return false;
    else
      return true;
  }
}

Author: Wolfgang Schreiner
Last Modification: October 6, 1999

previous up next