Package org.integratedmodelling.riskwiz.influence.jensen

Source Code of org.integratedmodelling.riskwiz.influence.jensen.SJTEdge

package org.integratedmodelling.riskwiz.influence.jensen;


import org.integratedmodelling.riskwiz.influence.JTPotential;
import org.integratedmodelling.riskwiz.jtree.JTEdge;


public class SJTEdge extends JTEdge<SJTVertex> {
 
    /**
     *
     */
    private static final long serialVersionUID = 6493326653445210741L;
 
    JTPotential potential;
 
    public SJTEdge() {
        super();    
    }

    public SJTEdge(SJTVertex vt1, SJTVertex vt2) {
        super(vt1, vt2);    
        potential = new JTPotential(sepset);
    }

    public JTPotential getPotential() {
        return potential;
    }
 
    public void setVacious() {
        potential.setVacious();
    }

    public void setPotential(JTPotential potential) {
        this.potential = potential;
    }

}
TOP

Related Classes of org.integratedmodelling.riskwiz.influence.jensen.SJTEdge

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.