Package abstrasy.pcfx

Source Code of abstrasy.pcfx.PCFx_p_or

package abstrasy.pcfx;

import abstrasy.Heap;
import abstrasy.Interpreter;
import abstrasy.Node;
import abstrasy.StaticHeap;

import abstrasy.interpreter.InterpreterException;
import abstrasy.interpreter.StdErrors;

/**
* Abstrasy Interpreter
*
* Copyright : Copyright (c) 2006-2012, Luc Bruninx.
*
* Concédée sous licence EUPL, version 1.1 uniquement (la «Licence»).
*
* Vous ne pouvez utiliser la présente oeuvre que conformément à la Licence.
* Vous pouvez obtenir une copie de la Licence à l’adresse suivante:
*
*   http://www.osor.eu/eupl
*
* Sauf obligation légale ou contractuelle écrite, le logiciel distribué sous
* la Licence est distribué "en l’état", SANS GARANTIES OU CONDITIONS QUELLES
* QU’ELLES SOIENT, expresses ou implicites.
*
* Consultez la Licence pour les autorisations et les restrictions
* linguistiques spécifiques relevant de la Licence.
*
*
* @author Luc Bruninx
* @version 1.0
*/

public class PCFx_p_or extends PCFx {

  public PCFx_p_or() {
  }

 
  private final static double getFuzzy(Node enode) throws Exception {
    double v = enode.getNumber();
        if(v<0 || v>1){ throw new InterpreterException(StdErrors.Out_of_range); }
        return v;
  }

  /**
   * eval
   *
   * @param startAt Node
   * @return Node
   * @throws Exception
   * @todo Implémenter cette méthode abstrasy.PCFx
   */
  public Node eval(Node startAt) throws Exception {
        /*
         * forme : (p-or a b ... n)
         *         (p-or {a} {b} ... {n})
         *
         * Probability-OR est une variante de l'opérateur OR en logique floue qui tient compte de la probabilité.
         *
         * Une valeur floue est un nombre réel compris entre 0 et 1.
         *
         */
    int i = 1;
    startAt.isGoodArgsLength(false, 3);
    double v = getFuzzy(startAt.getSubNode_LazyValue(i++,Node.TYPE_NUMBER));
    while ((v < 1) && (i < startAt.size())) {
            double b = getFuzzy(startAt.getSubNode_LazyValue(i++,Node.TYPE_NUMBER));
      v = v + b - (v * b);
    }
    return new Node(v);
  }

}
TOP

Related Classes of abstrasy.pcfx.PCFx_p_or

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.