Skip to content

Commit

Permalink
fix method name
Browse files Browse the repository at this point in the history
  • Loading branch information
gadelrab committed Jun 15, 2016
1 parent 0677459 commit 8789058
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public AssocRulesExtended getFrequentAssociationRules(String inputRDFFile, Strin

//rules.sort(AssocRulesExtended.SortingType.HEAD_CONF);
if(withExceptions){
FindExceptionCandidateSets(rules,transactionsDB,exceptionMinSupp);
findExceptionCandidateSets(rules,transactionsDB,exceptionMinSupp);

if(configuration.isOrder())
ruleAtTimeExceptionRanking(transactionsDB, rules);
Expand Down Expand Up @@ -321,7 +321,7 @@ private void rankException(AssocRulesExtended rules, TransactionsDatabase transa

}

private void FindExceptionCandidateSets(AssocRulesExtended rules, TransactionsDatabase transactionsDB, double exceptionMinSupp) throws IOException {
private void findExceptionCandidateSets(AssocRulesExtended rules, TransactionsDatabase transactionsDB, double exceptionMinSupp) throws IOException {
System.out.println("Start Mining Exception Candidates ...");
long startTime = System.nanoTime();
ExceptionMining em=new ExceptionMining(transactionsDB,rdf2TransactionsConverter,exceptionMinSupp);
Expand Down

0 comments on commit 8789058

Please sign in to comment.