Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
chkwon committed Jan 25, 2017
1 parent 378cac8 commit 13213e9
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,28 +40,28 @@ ta_data = load_ta_network("Sioux Falls")
The return value is of the TA_Data type, which is defined as
```julia
type TA_Data
network_name::AbstractString

number_of_zones::Int64
number_of_nodes::Int64
first_thru_node::Int64
number_of_links::Int64

start_node::Array
end_node::Array
capacity::Array
link_length::Array
free_flow_time::Array
B::Array
power::Array
speed_limit::Array
toll::Array
link_type::Array
network_name::String

number_of_zones::Int
number_of_nodes::Int
first_thru_node::Int
number_of_links::Int

start_node::Array{Int,1}
end_node::Array{Int,1}
capacity::Array{Float64,1}
link_length::Array{Float64,1}
free_flow_time::Array{Float64,1}
B::Array{Float64,1}
power::Array{Float64,1}
speed_limit::Array{Float64,1}
toll::Array{Float64,1}
link_type::Array{Int64,1}

total_od_flow::Float64

travel_demand::Array
od_pairs::Array
travel_demand::Array{Float64,2}
od_pairs::Array{Tuple{Int64,Int64},1}

toll_factor::Float64
distance_factor::Float64
Expand Down

0 comments on commit 13213e9

Please sign in to comment.