Examples of search()


Examples of aima.core.search.framework.Search.search()

        HeuristicFunction hf = createHeuristicFunction(toRNode,
            waySelection);
        Problem problem = createProblem(fromRNode, toRNode, mapData,
            wayFilter, ignoreOneways, waySelection);
        Search search = new AStarSearch(new GraphSearch(), hf);
        List<Action> actions = search.search(problem);
        if (actions.isEmpty())
          break;
        for (Object action : actions) {
          if (action instanceof OsmMoveAction) {
            OsmMoveAction a = (OsmMoveAction) action;

Examples of aima.core.search.informed.AStarSearch.search()

        HeuristicFunction hf = createHeuristicFunction(toRNode,
            waySelection);
        Problem problem = createProblem(fromRNode, toRNode, mapData,
            wayFilter, ignoreOneways, waySelection);
        Search search = new AStarSearch(new GraphSearch(), hf);
        List<Action> actions = search.search(problem);
        if (actions.isEmpty())
          break;
        for (Object action : actions) {
          if (action instanceof OsmMoveAction) {
            OsmMoveAction a = (OsmMoveAction) action;

Examples of aima.core.search.nondeterministic.AndOrSearch.search()

  //
  private void init() {
    setAlive(true);
    stack.clear();
    AndOrSearch andOrSearch = new AndOrSearch();
    this.contingencyPlan = andOrSearch.search(this.problem);
  }
}

Examples of br.com.procempa.modus.session.PersistentAccess.search()

   * @throws Exception
   */
  public static List<Equipamento> getList() throws Exception {
    List<Equipamento> equipamentos = new ArrayList<Equipamento>();
    PersistentAccess pa = PersistentAccessFactory.getInstance();
    List<Persistent> list = pa.search("FROM Equipamento");
    for (Persistent persistent : list) {
      equipamentos.add((Equipamento) persistent);
    }
    return equipamentos;
  }

Examples of ca.uhn.fhir.rest.client.GenericClient.search()

          }

          RuntimeResourceDefinition def = getResourceType(theReq);

          returnsResource = false;
          client.search(def.getImplementingClass(), params);

        } else {
          theResp.sendError(Constants.STATUS_HTTP_400_BAD_REQUEST, "Invalid method: " + method);
          return;
        }

Examples of cc.twittertools.search.api.TrecSearchThriftClient.search()

      query.setFeatureVector(temp);
     
     
      // if we're doing feedback
      if(fbDocs > 0 && fbTerms > 0) {
        List<TResult> results = client.search(queryText, query.getQuerytweettime(), fbDocs);
        FeedbackRelevanceModel fb = new FeedbackRelevanceModel();
        fb.setOriginalQuery(query);
        fb.setRes(results);
        fb.build(stopper);
       

Examples of clips.delegate.doctor.profchekup.ProfcheckupSearchLocal.search()

        if (result != null){
            this.result = result;
        }else{
            ProfcheckupSearchLocal searchLocal = new ProfcheckupSearchLocal(getAuditManager());
            this.result = searchLocal.search(contractLocal.getEnterprise());
        }

        initDangerList();
    resizeColumn();
    StateSaver.attachTo(this);

Examples of com.aelitis.azureus.core.metasearch.Engine.search()

    try
      Map  context = new HashMap();
     
      context.put( Engine.SC_SOURCE,   "subscription" );
     
      Result[] results = engine.search( parameters, context, -1, -1, null, null );
   
      log( "    Got " + results.length + " results" );
     
      SubscriptionResultFilter result_filter = new SubscriptionResultFilter(filters );

Examples of com.aetrion.flickr.photos.PhotosInterface.search()

//      }
//      */
     
      //We're looking for n images, starting at "page" startPage
      //PhotoList
      photoList = photoInterface.search(sp, n, startPage);
     
      //Check if no fotos were found and search again with reduced accurracy
      if (isGeoSearch
        &&  photoList     != null
        ){

Examples of com.android.builder.internal.compiler.SourceSearcher.search()

                        dependencyFileProcessor : sNoOpDependencyFileProcessor,
                mCmdLineRunner);

        SourceSearcher searcher = new SourceSearcher(sourceFolders, "aidl");
        searcher.setUseExecutor(true);
        searcher.search(processor);
    }

    /**
     * Compiles the given aidl file.
     *
 
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.