Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/MG2D/grav/grav_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,12 @@ function printgravmodparinfo(mstart,bodyindices,grav_whichpar,mlow,mup)

println(" ---------------------------------------------------")
printstyled(" Lower constraints for model parameters:\n",bold=true,color=:light_cyan)
pretty_table(vecparl, noheader = true, crop = :horizontal, formatters = ft_round(3))
pretty_table(vecparl, formatters = [fmt__round(3)])
#pretty_table(vecparl, noheader = true, crop = :horizontal, formatters = ft_round(3))

printstyled(" Upper constraints for model parameters:\n",bold=true,color=:light_cyan)
pretty_table(vecparu, noheader = true, crop = :horizontal, formatters = ft_round(3))
pretty_table(vecparu, formatters = [fmt__round(3)])
#pretty_table(vecparu, noheader = true, crop = :horizontal, formatters = ft_round(3))

return nothing
end
Expand Down
6 changes: 4 additions & 2 deletions src/MG2D/joint/joint_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,12 @@ function printjointmodparinfo(mstart,bodyindices,mag_whichpar,grav_whichpar,mlow

println(" ---------------------------------------------------")
printstyled(" Lower constraints for model parameters:\n",bold=true,color=:light_cyan)
pretty_table(vecparl, noheader = true, crop = :horizontal, formatters = ft_round(3))
pretty_table(vecparl, formatters = [fmt__round(3)])
#pretty_table(vecparl, noheader = true, crop = :horizontal, formatters = ft_round(3))

printstyled(" Upper constraints for model parameters:\n",bold=true,color=:light_cyan)
pretty_table(vecparu, noheader = true, crop = :horizontal, formatters = ft_round(3))
pretty_table(vecparu, formatters = [fmt__round(3)])
#pretty_table(vecparu, noheader = true, crop = :horizontal, formatters = ft_round(3))

return nothing
end
Expand Down
6 changes: 4 additions & 2 deletions src/MG2D/mag/mag_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,12 @@ function printmagmodparinfo(mstart,bodyindices,mag_whichpar,mlow,mup)

println(" ---------------------------------------------------")
printstyled(" Lower constraints for model parameters:\n",bold=true,color=:light_cyan)
pretty_table(vecparl, noheader = true, crop = :horizontal, formatters = ft_round(3))
pretty_table(vecparl, formatters = [fmt__round(3)])
#pretty_table(vecparl, noheader = true, crop = :horizontal, formatters = ft_round(3))

printstyled(" Upper constraints for model parameters:\n",bold=true,color=:light_cyan)
pretty_table(vecparu, noheader = true, crop = :horizontal, formatters = ft_round(3))
pretty_table(vecparu, formatters = [fmt__round(3)])
#pretty_table(vecparu, noheader = true, crop = :horizontal, formatters = ft_round(3))

return nothing
end
Expand Down