Package org.opentripplanner.routing.core

Examples of org.opentripplanner.routing.core.StateEditor.makeState()


    EdgeNarrative narrative = createNarrative(s0);
    StateEditor edit = s0.edit(this, narrative);
    int runningTime = computeRunningTime();
    edit.incrementTimeInSeconds(runningTime);
    edit.incrementWeight(runningTime);
    return edit.makeState();
  }

  /****
   * Private Methods
   ****/
 
View Full Code Here


      edit.setStartTime(startTime);

      double w = _transferTime * options.walkReluctance;
      edit.incrementWeight(w);

      State rTransfer = edit.makeState();
      results = rTransfer.addToExistingResultChain(results);
    }

    return results;
  }
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.