Examples of PotentialFunction


Examples of ivory.smrf.model.potential.PotentialFunction

    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).termCollectionCF();
  }

  public int termCollectionDF() {
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).termCollectionDF();
  }
View Full Code Here

Examples of ivory.smrf.model.potential.PotentialFunction

      throw new RuntimeException("Invalid type " + type);
    }
  }

  public int getDocno() {
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getDocno();
  }
View Full Code Here

Examples of ivory.smrf.model.potential.PotentialFunction

    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getDocno();
  }

  public int getNumberOfPostings() {
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getNumberOfPostings();
  }
View Full Code Here

Examples of ivory.smrf.model.potential.PotentialFunction

    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getNumberOfPostings();
  }

  public int getWindowSize() {
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getWindowSize();
  }
View Full Code Here

Examples of ivory.smrf.model.potential.PotentialFunction

    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getWindowSize();
  }

  public String getScoringFunctionName() { // dirichlet, bm25
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getScoringFunctionName();
  }
View Full Code Here

Examples of ivory.smrf.model.potential.PotentialFunction

    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getScoringFunctionName();
  }

  public ScoringFunction getScoringFunction() {
    PotentialFunction potential = getPotentialFunction();
    return ((CascadeQueryPotential) potential).getScoringFunction();
  }
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.