Package weka.associations.tertius

Examples of weka.associations.tertius.Rule.subsumes()


  added = true;
  break;
      }
      /* Subsumption tests to see if the rule can be added. */
      if ((m_subsumption || m_sameClause || m_equivalent)
    && current.subsumes(rule)) {
  if (current.numLiterals() == rule.numLiterals()) {
    if (current.equivalentTo(rule)) {
      /* Equivalent rules. */
      if (m_equivalent) {
        return;
View Full Code Here


  added = true;
  break;
      }
      /* Subsumption tests to see if the rule can be added. */
      if ((m_subsumption || m_sameClause || m_equivalent)
    && current.subsumes(rule)) {
  if (current.numLiterals() == rule.numLiterals()) {
    if (current.equivalentTo(rule)) {
      /* Equivalent rules. */
      if (m_equivalent) {
        return;
View Full Code Here

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.