Skip to content

Commit

Permalink
artifacts for FRS
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamstark committed Nov 13, 2024
1 parent 113d64e commit 3e11264
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/RunSettings.jl
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ module RunSettings
# weights
#
weight_type = eval(Symbol(@load_preference( "weight_type", "constrained_chi_square")))
lower_multiple = eval(Symbol(@load_preference( "lower_multiple", "0.20 # these values can be narrowed somewhat, to around 0.25-4.7")))
upper_multiple = eval(Symbol(@load_preference( "upper_multiple", "5.0")))
lower_multiple = @load_preference( "lower_multiple", 0.20 )
upper_multiple = @load_preference( "upper_multiple", 5.0)

do_health_estimates = @load_preference( "do_health_estimates", false )
## Elliot's email of June 21, 2023
Expand Down
2 changes: 1 addition & 1 deletion src/ScottishTaxBenefitModel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export HealthRegressions
include( "HTMLLibs.jl")
export HTMLLibs

function Base.__init__()
function __init__()

end

Expand Down

0 comments on commit 3e11264

Please sign in to comment.