Skip to content
Snippets Groups Projects
Commit e1422968 authored by Ruben Haag's avatar Ruben Haag
Browse files

Reload Ridepooling packages every time

parent dfbbb5cf
No related branches found
No related tags found
No related merge requests found
using Pkg
Pkg.activate(".")
Pkg.add(url="https://gitlab.gwdg.de/smuehle1/RidePooling/", rev="planned_pickup")
Pkg.instantiate() #there may be an error here concerning PyCall. The dependencies assume Python to be installed on your system, with package 'matplotlib' installed.
#Either just run 'conda install -c conda-forge matplotlib' in your system shell, or follow instructions below (after running this cell and getting an error) to solve everything from within Julia.
import RidePooling
settings_name = "./standard_settings.jl" settings_name = "./standard_settings.jl"
name = "testing" name = "testing"
......
...@@ -63,7 +63,7 @@ specs=(; ...@@ -63,7 +63,7 @@ specs=(;
seed = 1, seed = 1,
request_type = request_type, request_type = request_type,
random_gens = random_gens, random_gens = random_gens,
t_max_wait = t0 ) t_max_wait = t_max_wait * t0 )
specs = merge(specs, dispatcher) specs = merge(specs, dispatcher)
......
...@@ -12,9 +12,9 @@ path="/scratch01.local/rhaag/$(String(request_type))/$name/" # Path were everyt ...@@ -12,9 +12,9 @@ path="/scratch01.local/rhaag/$(String(request_type))/$name/" # Path were everyt
# Simulation Settings # Simulation Settings
N=10 #Number of Busses N = 10 #Number of Busses
requested = 200 * N # Number of requests, that need to be made requested = 2000 * N # Number of requests, that need to be made
served = 200 * N # Number of requests, that need to be served served = 2000 * N # Number of requests, that need to be served
#Random Generator #Random Generator
rng_type = :notRandom rng_type = :notRandom
...@@ -25,6 +25,7 @@ yBounds = (0.1, 1.5) ...@@ -25,6 +25,7 @@ yBounds = (0.1, 1.5)
im_size = (40, 40) im_size = (40, 40)
indexing_method = getLogLogValue indexing_method = getLogLogValue
t_max_wait = 3
# File Organization # File Organization
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment