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

Small error corrections

parent 0e64c3d8
Branches
Tags
No related merge requests found
......@@ -13,7 +13,7 @@ model_folder = project_folder*"/models/"
output_file = "results.csv"
efficiency(model) = driven_distance(model) / requested_distance(model)
efficiency(model) = requested_distance(model) /driven_distance(model)
#TODO quality =
data_type_functions = Dict(
:served_percentage => served_percentage,
......
settings_name = "./standard_settings.jl"
name = "earliest_pickup_testing_phase"
name = "testing"
include(settings_name)
......
......@@ -50,7 +50,6 @@ function getLogLogValue(index, xmin, xmax, xlen::Int64, ymin, ymax, ylen::Int64)
xs = exp.(LinRange(log(xmin), log(xmax), xlen))
ys = exp.(LinRange(log(ymin), log(ymax), ylen))
println(length(xs));
x = xs[(index)%xlen+1]
y = ys[trunc(Int64, (index)/ylen)+1]
return x,y
......
......@@ -4,7 +4,7 @@
#$ -cwd
#$ -q titan.q
#$ -j yes
#$ -N earliest_pickup_testing_phase
#$ -N testing
#$ -t 1-1600
#$ -tc 500
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment