Following up again: it appears that x::Vector * A::SparseMatrixCSC was
removed via a commit last week.
<https://github.com/JuliaLang/julia/commit/d914fb34a75d1c0246195665ad63a6b01a733913>
Is
anyone aware of a workaround?
On Tuesday, June 30, 2015 at 11:06:05 AM UTC-5, Seth wrote:
>
> Following up, it's not with @test, it's with the pagerank code itself:
>
> ERROR: LoadError: LoadError: DimensionMismatch("")
>
> in * at sparse/linalg.jl:104
>
> in * at linalg/matmul.jl:70
>
> in pagerank at
> /home/travis/.julia/v0.4/LightGraphs/src/centrality/pagerank.jl:18
>
>
> This works in 0.4.0-dev+5008 but is broken in nightly.
>
>
> On Tuesday, June 30, 2015 at 10:31:58 AM UTC-5, Seth wrote:
>>
>> Trying to get Travis to behave, but I'm running into a new (for me) error
>> message. Does anyone have any ideas? That should be rounding a Float64 to
>> three decimal places. It works on 0.4.0-dev+5008.
>>
>> The line is
>>
>> @test round(pagerank(g5)[3],3) == 0.318
>>
>> (I don't know where those extra parens (in the output below) are coming
>> from, but on my system it works. It's just not working on Travis.)
>>
>>
>>
>> ERROR: LoadError: LoadError: test error in expression:
>> round((pagerank(g5))[3],3) == 0.318
>>
>> DimensionMismatch("")
>>
>>