forked from Fast-Trips/fast-trips
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
181 changed files
with
2,314 additions
and
386 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
|
||
**/.ipynb_checkpoints/* | ||
|
||
|
||
**/Examples/**/output* | ||
create_tableau_path_map/* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
.../RLvsTBHPexample2/input/pathweight_ft.txt → ...Examples/Bear/configs/B/pathweight_ft.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
user_class demand_mode_type demand_mode supply_mode weight_name weight_value | ||
all transfer transfer transfer walk_time_min 0.0 | ||
all access walk walk_access time_min 0.0 | ||
all access walk walk_access preferred_delay_min 0.0402 | ||
all access walk walk_access depart_early_min 0.0402 | ||
all egress walk walk_egress time_min 0.0 | ||
all egress walk walk_egress preferred_delay_min 0.0402 | ||
all egress walk walk_egress arrive_late_min 0.0402 | ||
all transit local_bus local_bus in_vehicle_time_min 0.02 | ||
all transit local_bus local_bus wait_time_min 0.0402 | ||
all transit local_bus local_bus transfer_penalty 0.0 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import os | ||
from fasttrips import Run | ||
|
||
network = "cub" | ||
demand = "earlier" | ||
config = "A" | ||
out_folder = "bear_cub_earlier_A" | ||
|
||
ex_dir = os.path.abspath(os.path.dirname(__file__)) | ||
print "Running Fast-Trips in %s" % (ex_dir.split(os.sep)[-1:]) | ||
|
||
Run.run_fasttrips( | ||
input_network_dir = os.path.join(ex_dir,"networks",network), | ||
input_demand_dir = os.path.join(ex_dir,"demand",demand), | ||
run_config = os.path.join(ex_dir,"configs",config,"config_ft.txt"), | ||
input_weights = os.path.join(ex_dir,"configs",config,"pathweight_ft.txt"), | ||
output_dir = os.path.join(ex_dir,"output"), | ||
output_folder = out_folder, | ||
pathfinding_type = "stochastic", | ||
overlap_variable = "count", | ||
overlap_split_transit = True, | ||
iters = 1, | ||
dispersion = 0.50) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import os | ||
from fasttrips import Run | ||
|
||
network = "bunny_hop" | ||
demand = "forward_bunnies" | ||
config = "base" | ||
out_folder = "small_bunny_hop_fwd" | ||
|
||
ex_dir = os.path.abspath(os.path.dirname(__file__)) | ||
print "Running Fast-Trips in %s" % (ex_dir.split(os.sep)[-1:]) | ||
|
||
Run.run_fasttrips( | ||
input_network_dir = os.path.join(ex_dir,"networks",network), | ||
input_demand_dir = os.path.join(ex_dir,"demand",demand), | ||
run_config = os.path.join(ex_dir,"configs",config,"config_ft.txt"), | ||
input_weights = os.path.join(ex_dir,"configs",config,"pathweight_ft.txt"), | ||
output_dir = os.path.join(ex_dir,"output"), | ||
output_folder = out_folder, | ||
pathfinding_type = "stochastic", | ||
overlap_variable = "count", | ||
overlap_split_transit = True, | ||
iters = 1, | ||
dispersion = 0.50) |
Oops, something went wrong.