Examples of effect()


Examples of edu.cmu.cs.fusion.parsers.predicate.FPLParser.effect()

          restrict = parser.expression();
        }
        else if (name.equals("effects")) {     
          for (Object effect : (Object[])pair.getValue()) {
            parser.reset((String)effect);
            effects.add(parser.effect());
          }
        }
      }
     
      if (trigger == null)
View Full Code Here

Examples of edu.cmu.cs.fusion.parsers.predicate.FPLParser.effect()

          parser.reset(node.getTextContent());
          requires = parser.expression();
        }
        else if (name.equals("eff")) {
          parser.reset(node.getTextContent());
          effects.add(parser.effect());
        }
      }
      if (trigger == null)
        trigger = new TruePredicate();
      if (restrict == null)
View Full Code Here

Examples of edu.ucla.sspace.evaluation.WordChoiceReport.effect()

            WordPrimingReport report = wordPrimingTest.evaluate(sspace);
            verbose("Results for %s:%n%s%n", wordPrimingTest , report);
            results[resultIndex++] = String.format("%4.3f & %4.3f & %4.3f",
                                                   report.relatedPriming(),
                                                   report.unrelatedPriming(),
                                                   report.effect());
        }

        // Run the word priming tests.
        for (NormedWordPrimingTest normedPrimingTest : normedPrimingTests) {
            NormedWordPrimingReport report = normedPrimingTest.evaluate(sspace);
View Full Code Here

Examples of edu.ucla.sspace.evaluation.WordPrimingReport.effect()

            WordPrimingReport report = wordPrimingTest.evaluate(sspace);
            verbose("Results for %s:%n%s%n", wordPrimingTest , report);
            results[resultIndex++] = String.format("%4.3f & %4.3f & %4.3f",
                                                   report.relatedPriming(),
                                                   report.unrelatedPriming(),
                                                   report.effect());
        }

        // Run the word priming tests.
        for (NormedWordPrimingTest normedPrimingTest : normedPrimingTests) {
            NormedWordPrimingReport report = normedPrimingTest.evaluate(sspace);
View Full Code Here

Examples of edu.ucla.sspace.evaluation.WordSimilarityReport.effect()

            WordPrimingReport report = wordPrimingTest.evaluate(sspace);
            verbose("Results for %s:%n%s%n", wordPrimingTest , report);
            results[resultIndex++] = String.format("%4.3f & %4.3f & %4.3f",
                                                   report.relatedPriming(),
                                                   report.unrelatedPriming(),
                                                   report.effect());
        }

        // Run the word priming tests.
        for (NormedWordPrimingTest normedPrimingTest : normedPrimingTests) {
            NormedWordPrimingReport report = normedPrimingTest.evaluate(sspace);
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.