Wenping-Cui

Results 3 issues of Wenping-Cui

In the makefile, " BOOSTLIBS_PO=-lboost_program_options-mt BOOSTLIBS_UTF=-lboost_unit_test_framework-mt " should be changed to " BOOSTLIBS_PO=-lboost_program_options BOOSTLIBS_UTF=-lboost_unit_test_framework " for the current version of boost. Details can be found at https://askubuntu.com/questions/486006/cannot-find-boost-thread-mt-library.

The convex optimization method does not work when set params={'l':0}. I have to change it to be the float type: params={'l':0.0}. There should be something wrong in transferring the float...

My version is Julia 1.6.2. ``` using LinearAlgebra using StaticArrays m3 = SMatrix{3,3}(1I) eigen(m3) ``` > MethodError: no method matching precision(::Type{Int64}) > Closest candidates are: > precision(::Type{Float16}) at float.jl:599 >...