
com.github.vangj.jbayes.inf.exact.graph.Ug Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbayes-inference Show documentation
Show all versions of jbayes-inference Show documentation
A very cool project for BBN inference using approximate and exact algorithms.
The newest version!
package com.github.vangj.jbayes.inf.exact.graph;
/**
* An undirected graph.
*/
public class Ug extends Graph {
@Override
protected Graph instance() {
return new Ug();
}
@Override
public Graph addEdge(Edge edge) {
edge.type = Edge.Type.UNDIRECTED;
return super.addEdge(edge);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy