@@ -21,29 +21,29 @@ Returns:
21
21
function init_model (parameters:: Dict{String, Any} , initial_conditions:: Dict{String, Any} , T, typeInt:: DataType = Int64, typeFloat:: DataType = Float64)
22
22
23
23
# properties
24
- properties = BeforeIT . init_properties (parameters, T; typeInt = typeInt, typeFloat = typeFloat)
24
+ properties = Bit . init_properties (parameters, T; typeInt = typeInt, typeFloat = typeFloat)
25
25
26
26
# firms
27
- firms, _ = BeforeIT . init_firms (parameters, initial_conditions; typeInt = typeInt, typeFloat = typeFloat)
27
+ firms, _ = Bit . init_firms (parameters, initial_conditions; typeInt = typeInt, typeFloat = typeFloat)
28
28
29
29
# workers, and update firms vacancies
30
- workers_act, workers_inact, V_i_new, _, _ = BeforeIT . init_workers (parameters, initial_conditions, firms; typeInt = typeInt, typeFloat = typeFloat)
30
+ workers_act, workers_inact, V_i_new, _, _ = Bit . init_workers (parameters, initial_conditions, firms; typeInt = typeInt, typeFloat = typeFloat)
31
31
firms. V_i = V_i_new
32
32
33
33
# bank
34
- bank, _ = BeforeIT . init_bank (parameters, initial_conditions, firms; typeInt = typeInt, typeFloat = typeFloat)
34
+ bank, _ = Bit . init_bank (parameters, initial_conditions, firms; typeInt = typeInt, typeFloat = typeFloat)
35
35
36
36
# central bank
37
- central_bank, _ = BeforeIT . init_central_bank (parameters, initial_conditions; typeInt = typeInt, typeFloat = typeFloat)
37
+ central_bank, _ = Bit . init_central_bank (parameters, initial_conditions; typeInt = typeInt, typeFloat = typeFloat)
38
38
39
39
# government
40
- government, _ = BeforeIT . init_government (parameters, initial_conditions; typeInt = typeInt, typeFloat = typeFloat)
40
+ government, _ = Bit . init_government (parameters, initial_conditions; typeInt = typeInt, typeFloat = typeFloat)
41
41
42
42
# rest of the world
43
- rotw, _ = BeforeIT . init_rotw (parameters, initial_conditions; typeInt = typeInt, typeFloat = typeFloat)
43
+ rotw, _ = Bit . init_rotw (parameters, initial_conditions; typeInt = typeInt, typeFloat = typeFloat)
44
44
45
45
# aggregates
46
- agg, _ = BeforeIT . init_aggregates (parameters, initial_conditions, T; typeInt = typeInt, typeFloat = typeFloat)
46
+ agg, _ = Bit . init_aggregates (parameters, initial_conditions, T; typeInt = typeInt, typeFloat = typeFloat)
47
47
48
48
# model
49
49
model = Model (workers_act, workers_inact, firms, bank, central_bank, government, rotw, agg, properties)
0 commit comments