-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
230 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
always_use_return = false | ||
annotate_untyped_fields_with_any = false | ||
conditional_to_if = false | ||
import_to_using = false | ||
join_lines_based_on_source = true | ||
normalize_line_endings = "unix" | ||
pipe_to_function_call = false | ||
remove_extra_newlines = true | ||
short_to_long_function_def = false | ||
long_to_short_function_def = false | ||
whitespace_in_kwargs = true | ||
whitespace_ops_in_indices = true | ||
whitespace_typedefs = true | ||
indent = 4 | ||
margin = 92 | ||
format_docstrings = false | ||
align_struct_field = false | ||
align_assignment = false | ||
align_conditional = false | ||
align_pair_arrow = false | ||
align_matrix = false | ||
trailing_comma = false | ||
trailing_zero = true | ||
indent_submodule = false | ||
separate_kwargs_with_semicolon = false | ||
surround_whereop_typeparameters = true | ||
variable_call_indent = [] | ||
yas_style_nesting = false | ||
disallow_single_arg_nesting = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,34 @@ | ||
module UtilityModels | ||
|
||
using StatsBase | ||
using Distributions | ||
using ConcreteStructs | ||
using StatsBase | ||
using Distributions | ||
|
||
import Distributions: ContinuousUnivariateDistribution | ||
import Distributions: mean | ||
import Distributions: var | ||
import Distributions: std | ||
import Distributions: rand | ||
import Distributions: logpdf | ||
import StatsBase: sample | ||
export UtilityModel | ||
export TAX | ||
export ProspectTheory | ||
export ExpectedUtility | ||
export ValenceExpectancy | ||
export Gamble | ||
export mean | ||
export var | ||
export std | ||
export pdf | ||
export logpdf | ||
export sample | ||
#export rand | ||
include("Gamble.jl") | ||
include("UtilityModel.jl") | ||
include("ProspectTheory.jl") | ||
include("ExpectedUtility.jl") | ||
include("ValenceExpectancy.jl") | ||
include("TAX.jl") | ||
import Distributions: ContinuousUnivariateDistribution | ||
import Distributions: mean | ||
import Distributions: var | ||
import Distributions: std | ||
import Distributions: rand | ||
import Distributions: logpdf | ||
import StatsBase: sample | ||
|
||
export UtilityModel | ||
export TAX | ||
export ProspectTheory | ||
export ExpectedUtility | ||
export ValenceExpectancy | ||
export Gamble | ||
export mean | ||
export var | ||
export std | ||
export pdf | ||
export logpdf | ||
export sample | ||
#export rand | ||
|
||
include("Gamble.jl") | ||
include("UtilityModel.jl") | ||
include("ProspectTheory.jl") | ||
include("ExpectedUtility.jl") | ||
include("ValenceExpectancy.jl") | ||
include("TAX.jl") | ||
end |
Oops, something went wrong.