Skip to content

Commit

Permalink
Update AbstractFixedEffectSolver.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieugomez committed Nov 19, 2023
1 parent bc6345d commit 045b54d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/AbstractFixedEffectSolver.jl
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ function solve_residuals!(xs::AbstractVector{<: AbstractVector}, feM::AbstractFi
end

function solve_residuals!(X::AbstractMatrix, feM::AbstractFixedEffectSolver; kwargs...)
solve_residuals!(eachcol(X), feM; kwargs...)
xs, iterations, convergeds = solve_residuals!(eachcol(X), feM; kwargs...)
return X, iterations, convergeds
end


Expand Down

0 comments on commit 045b54d

Please sign in to comment.