From 6f3bde50b1fba1cb394e57adf724a228fc2a9934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olli=20V=C3=A4in=C3=B6l=C3=A4?= Date: Thu, 3 Dec 2015 15:39:43 +0200 Subject: [PATCH] Api able to read abaqus reader input --- src/abaqus_reader.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/abaqus_reader.jl b/src/abaqus_reader.jl index 012a7d7..ba0b366 100644 --- a/src/abaqus_reader.jl +++ b/src/abaqus_reader.jl @@ -189,9 +189,9 @@ function parse_abaqus(fid::IOStream) keyword_sym::Symbol = :none parser::Function = x->() model = Dict{AbstractString, Any}() - model["nodes"] = Dict{Int, Vector{AbstractFloat}}() - model["nsets"] = Dict{AbstractString, Vector{Int}}() - model["elsets"] = Dict{AbstractString, Vector{Int}}() + model["nodes"] = Dict{Int64, Vector{Float64}}() + model["nsets"] = Dict{ASCIIString, Vector{Int64}}() + model["elsets"] = Dict{ASCIIString, Vector{Int64}}() model["elements"] = Dict{Integer, Any}() for idx_end in keyword_indexes[2:end] keyword_line = uppercase(lines[idx_start])